:root {
	--frx-bg: #080808;
	--frx-bg-soft: #121010;
	--frx-surface: rgba(11, 11, 11, 0.84);
	--frx-surface-strong: rgba(15, 15, 15, 0.96);
	--frx-text: #f6f3ef;
	--frx-muted: #a7a09d;
	--frx-accent: #ff5a1f;
	--frx-accent-soft: rgba(255, 90, 31, 0.28);
	--frx-border: rgba(255, 255, 255, 0.12);
	--frx-border-strong: rgba(255, 255, 255, 0.18);
	--frx-status: #18f26e;
	--frx-radius: 28px;
	--frx-container: min(100% - 40px, 1440px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(circle at 70% 18%, rgba(255, 110, 54, 0.14), transparent 22%),
		radial-gradient(circle at 40% 58%, rgba(255, 124, 66, 0.12), transparent 30%),
		linear-gradient(180deg, #030303 0%, #090909 38%, #060606 100%);
	color: var(--frx-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.site {
	min-height: 100vh;
	overflow: clip;
}

.frx-theme-shell {
	position: relative;
	z-index: 1;
}

.frx-container {
	width: var(--frx-container);
	margin: 0 auto;
}

.frx-button,
.frx-hero__cta,
.frx-site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	padding: 16px 30px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ff7b38 0%, #ff5a1f 44%, #ef4a14 100%);
	color: #fff7f1;
	font-weight: 700;
	letter-spacing: -0.02em;
	box-shadow: 0 18px 50px rgba(255, 90, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.frx-button:hover,
.frx-hero__cta:hover,
.frx-site-header__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 58px rgba(255, 90, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.frx-site-header {
	--frx-header-text: #f3efea;
	--frx-header-accent: var(--frx-accent);
	--frx-header-separator: rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 40;
	width: 100%;
}

.admin-bar .frx-site-header {
	top: 32px;
}

.frx-site-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	width: var(--frx-container);
	margin: 0 auto;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--frx-header-separator);
	transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, padding 220ms ease;
}

.frx-site-header.is-scrolled .frx-site-header__inner {
	padding: 14px 22px;
	margin-top: 12px;
	background: rgba(8, 8, 8, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom-color: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(22px);
	border-radius: 32px;
}

.frx-site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.frx-site-header__logo {
	width: auto;
	max-height: 42px;
}

.frx-site-header__brand-text {
	font-family: "Manrope", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--frx-header-text);
}

.frx-site-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 2vw, 44px);
}

.frx-site-header__nav a {
	position: relative;
	color: var(--frx-header-text);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	transition: color 200ms ease;
}

.frx-site-header__nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: var(--frx-header-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 200ms ease;
}

.frx-site-header__nav a:hover::after {
	transform: scaleX(1);
}

.frx-site-header__cta {
	min-width: 174px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.frx-site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--frx-text);
	cursor: pointer;
}

.frx-site-header__toggle span {
	display: block;
	width: 20px;
	height: 1.5px;
	background: currentColor;
}

.frx-hero {
	--frx-overlay-strength: 0.62;
	--frx-bg-image: none;
	--frx-accent: #ff5a1f;
	--frx-text: #f6f3ef;
	--frx-muted: #a7a09d;
	--frx-status: #18f26e;
	position: relative;
	min-height: 100vh;
	isolation: isolate;
	overflow: clip;
}

.frx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.32) 44%, rgba(5, 5, 5, 0.86) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0.82) 100%);
	opacity: var(--frx-overlay-strength);
	z-index: -1;
}

.frx-hero__media,
.frx-hero__glow {
	position: absolute;
	inset: 0;
}

.frx-hero__media {
	background-image: var(--frx-bg-image);
	background-size: cover;
	background-position: center;
	filter: blur(8px) saturate(0.85) brightness(0.42);
	transform: scale(1.08);
	z-index: -3;
}

.frx-hero__glow {
	background:
		radial-gradient(circle at 66% 74%, rgba(255, 104, 44, 0.38), transparent 22%),
		radial-gradient(circle at 40% 75%, rgba(255, 147, 60, 0.12), transparent 28%),
		radial-gradient(circle at 54% 42%, rgba(255, 132, 72, 0.08), transparent 25%);
	mix-blend-mode: screen;
	z-index: -2;
}

.frx-hero__container {
	width: var(--frx-container);
	margin: 0 auto;
}

.frx-hero__topline {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 390px);
	gap: 32px;
	align-items: start;
	margin-bottom: clamp(88px, 11vw, 150px);
}

.frx-hero__status {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.frx-hero__status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--frx-status);
	box-shadow: 0 0 0 6px rgba(24, 242, 110, 0.08), 0 0 22px rgba(24, 242, 110, 0.34);
}

.frx-hero__copy {
	margin-left: auto;
	max-width: 390px;
	font-size: clamp(1.5rem, 2vw, 1.95rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--frx-muted);
}

.frx-hero__copy-accent {
	color: var(--frx-accent);
	margin-right: 0.25em;
}

.frx-hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
	align-items: end;
	gap: clamp(28px, 5vw, 90px);
}

.frx-hero__headline {
	margin: 0;
}

.frx-hero__intro {
	display: block;
	margin-bottom: 22px;
	font-size: clamp(2.4rem, 4vw, 5rem);
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.055em;
	color: var(--frx-text);
}

.frx-hero__brand {
	display: block;
	font-size: clamp(5.6rem, 14vw, 11.4rem);
	line-height: 0.88;
	font-weight: 800;
	letter-spacing: -0.09em;
	color: var(--frx-accent);
	text-shadow: 0 10px 48px rgba(255, 90, 31, 0.16);
}

.frx-hero__brand-image {
	display: block;
	width: min(100%, 980px);
	height: auto;
}

.frx-hero__right {
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-self: center;
}

.frx-hero__cta {
	width: 100%;
	min-height: 78px;
	font-size: 1.2rem;
}

.frx-hero__service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.86) 0%, rgba(7, 7, 7, 0.96) 100%);
	backdrop-filter: blur(18px);
	overflow: hidden;
}

.frx-hero__service-card::after {
	content: "";
	position: absolute;
	left: 8%;
	right: 8%;
	bottom: -36px;
	height: 90px;
	background: radial-gradient(circle, rgba(255, 104, 44, 0.42) 0%, rgba(255, 104, 44, 0.16) 38%, transparent 72%);
	filter: blur(14px);
	pointer-events: none;
}

.frx-hero__service-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 2px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 1.14rem;
	font-weight: 500;
	letter-spacing: -0.03em;
	transition: color 180ms ease, transform 180ms ease;
}

.frx-hero__service-link:last-child {
	border-bottom: 0;
}

.frx-hero__service-link:hover {
	transform: translateX(4px);
	color: #ffffff;
}

.frx-hero__service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	color: rgba(255, 255, 255, 0.86);
}

.frx-about {
	--frx-about-bg: #050505;
	--frx-about-text: #f4f0ec;
	--frx-about-muted: #77706d;
	--frx-about-accent: #ff5a1f;
	padding: 110px 0 124px;
	background:
		radial-gradient(circle at 72% 74%, rgba(255, 94, 31, 0.12), transparent 20%),
		var(--frx-about-bg);
	color: var(--frx-about-text);
}

.frx-about__top,
.frx-about__bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 880px);
	gap: clamp(32px, 4vw, 78px);
}

.frx-about__bottom {
	margin-top: 84px;
	align-items: end;
}

.frx-about__title {
	margin: 0;
	font-size: clamp(5.8rem, 15vw, 10.8rem);
	line-height: 0.86;
	font-weight: 400;
	letter-spacing: -0.09em;
}

.frx-about__intro {
	max-width: 920px;
	font-size: clamp(2rem, 3.15vw, 4rem);
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: -0.06em;
	color: var(--frx-about-text);
	opacity: 0.82;
}

.frx-about__blurb {
	max-width: 360px;
	font-size: clamp(1.15rem, 1.85vw, 1.75rem);
	line-height: 1.44;
	font-weight: 600;
	letter-spacing: -0.04em;
	color: var(--frx-about-muted);
}

.frx-about__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.frx-about__stat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 396px;
	padding: 34px 34px 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(29, 29, 29, 0.96) 0%, rgba(18, 18, 18, 0.96) 100%);
	overflow: hidden;
}

.frx-about__stat-card::after {
	content: "";
	position: absolute;
	inset: auto -12% -20% -12%;
	height: 44%;
	background: radial-gradient(circle, rgba(255, 114, 54, 0.22) 0%, rgba(255, 114, 54, 0.1) 38%, transparent 68%);
	filter: blur(18px);
	opacity: 0;
}

.frx-about__stat-card.is-highlighted::after {
	opacity: 1;
}

.frx-about__stat-value {
	position: relative;
	z-index: 1;
	font-size: clamp(4.4rem, 8vw, 6.2rem);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.08em;
}

.frx-about__stat-label {
	position: relative;
	z-index: 1;
	margin-top: auto;
	font-size: 1.15rem;
	line-height: 1.3;
	font-weight: 500;
	color: var(--frx-about-muted);
}

.frx-services {
	--frx-services-bg: #efe9e6;
	--frx-services-title: #050505;
	--frx-services-text: #6f6a69;
	--frx-services-accent: #ff5a1f;
	padding: 88px 0 112px;
	background: var(--frx-services-bg);
	color: var(--frx-services-title);
}

.frx-services__hero {
	display: grid;
	gap: 40px;
}

.frx-services__title {
	margin: 0;
	font-size: clamp(6rem, 16vw, 11rem);
	line-height: 0.84;
	font-weight: 400;
	letter-spacing: -0.1em;
}

.frx-services__feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 650px);
	gap: clamp(40px, 6vw, 94px);
	align-items: start;
}

.frx-services__feature-title {
	margin: 0 0 26px;
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.07em;
	color: #8a6356;
}

.frx-services__feature-media {
	min-height: 320px;
	border-radius: 26px;
	background:
		radial-gradient(circle at 50% 34%, rgba(255, 103, 32, 0.48), transparent 20%),
		linear-gradient(140deg, #111111 0%, #1e1b19 50%, #060606 100%);
	box-shadow: 0 34px 70px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.frx-services__feature-image {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.frx-services__feature-right {
	padding-top: 18px;
}

.frx-services__feature-copy,
.frx-services__row-copy {
	font-size: clamp(1.14rem, 1.7vw, 1.65rem);
	line-height: 1.52;
	font-weight: 500;
	color: var(--frx-services-text);
	letter-spacing: -0.03em;
}

.frx-services__checklist {
	display: grid;
	gap: 22px;
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.frx-services__checklist li {
	position: relative;
	padding-left: 42px;
	font-size: clamp(1.16rem, 1.45vw, 1.45rem);
	line-height: 1.4;
	font-weight: 500;
	color: var(--frx-services-text);
	letter-spacing: -0.03em;
}

.frx-services__checklist li::before,
.frx-services__checklist li::after {
	content: "";
	position: absolute;
}

.frx-services__checklist li::before {
	left: 0;
	top: 3px;
	width: 24px;
	height: 24px;
	border: 1.5px solid var(--frx-services-accent);
	border-radius: 50%;
}

.frx-services__checklist li::after {
	left: 8px;
	top: 8px;
	width: 9px;
	height: 5px;
	border-left: 2px solid var(--frx-services-accent);
	border-bottom: 2px solid var(--frx-services-accent);
	transform: rotate(-45deg);
}

.frx-services__rows {
	margin-top: 52px;
	border-top: 1px solid rgba(68, 63, 62, 0.14);
}

.frx-services__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 650px);
	gap: clamp(32px, 6vw, 92px);
	padding: 48px 0;
	border-bottom: 1px solid rgba(68, 63, 62, 0.14);
}

.frx-services__row-title {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 4rem);
	line-height: 0.98;
	font-weight: 700;
	letter-spacing: -0.07em;
	color: #6f6a69;
}

.frx-works {
	--frx-works-bg: #050505;
	padding: 44px 0 108px;
	background: var(--frx-works-bg);
}

.frx-works__stack {
	display: grid;
	gap: 0;
}

.frx-works__card {
	position: relative;
	display: block;
	min-height: clamp(340px, 48vw, 560px);
	margin: 0 auto;
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
	transform-origin: center;
}

.frx-works__card + .frx-works__card {
	margin-top: -78px;
}

.frx-works__card:nth-child(odd) {
	width: min(100%, 1750px);
	transform: rotate(-3deg);
}

.frx-works__card:nth-child(even) {
	width: min(92%, 1620px);
	transform: rotate(2deg);
}

.frx-works__media,
.frx-works__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.frx-works__media {
	background:
		radial-gradient(circle at 60% 36%, rgba(255, 102, 32, 0.5), transparent 20%),
		linear-gradient(160deg, #2a2726 0%, #0a0a0a 52%, #1c130d 100%);
}

.frx-works__image {
	object-fit: cover;
}

.frx-works__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.48) 54%, rgba(0, 0, 0, 0.6) 100%);
}

.frx-works__view {
	position: absolute;
	top: clamp(24px, 5vw, 64px);
	left: clamp(24px, 8vw, 90px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(100px, 10vw, 146px);
	height: clamp(100px, 10vw, 146px);
	border-radius: 50%;
	background: rgba(92, 109, 131, 0.3);
	backdrop-filter: blur(16px);
	color: #ffffff;
	font-size: clamp(1.4rem, 2vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	z-index: 1;
}

.frx-works__year {
	position: absolute;
	top: clamp(28px, 4vw, 46px);
	right: clamp(28px, 4vw, 46px);
	z-index: 1;
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.88);
}

.frx-works__footer {
	position: absolute;
	left: clamp(24px, 3vw, 42px);
	right: clamp(24px, 3vw, 42px);
	bottom: clamp(26px, 4vw, 42px);
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

.frx-works__title {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3.2rem);
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.06em;
	color: #f5f1ed;
}

.frx-works__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.06rem;
	font-weight: 500;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.frx-review {
	padding: 92px 0 112px;
	background: #f3eeeb;
	color: #141414;
}

.frx-review__title {
	margin: 0 0 54px;
	font-size: clamp(5.8rem, 16vw, 10rem);
	line-height: 0.84;
	font-weight: 400;
	letter-spacing: -0.1em;
}

.frx-review__feature {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.frx-review__featured-card,
.frx-review__card {
	display: flex;
	flex-direction: column;
	border-radius: 30px;
}

.frx-review__featured-card {
	min-height: 294px;
	padding: 34px 34px 30px;
	background: linear-gradient(180deg, #ff6e25 0%, #ff5a1f 100%);
	color: #fff7f1;
}

.frx-review__feature-media {
	min-height: 294px;
	border-radius: 30px;
	overflow: hidden;
	background: linear-gradient(135deg, #1e140f 0%, #3e241f 50%, #130f11 100%);
}

.frx-review__feature-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.frx-review__rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.frx-review__star {
	font-size: 1.3rem;
	line-height: 1;
	color: #111111;
}

.frx-review__rating.is-featured .frx-review__star {
	color: #ffe16f;
}

.frx-review__featured-quote {
	margin-top: 28px;
	max-width: 20ch;
	font-size: clamp(1.75rem, 2.35vw, 2.5rem);
	line-height: 1.18;
	font-weight: 600;
	letter-spacing: -0.05em;
}

.frx-review__featured-author {
	margin-top: auto;
	padding-top: 28px;
}

.frx-review__featured-name {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.frx-review__featured-role {
	margin-top: 8px;
	font-size: 1.02rem;
	line-height: 1.45;
	color: rgba(255, 247, 241, 0.8);
}

.frx-review__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.frx-review__card {
	min-height: 418px;
	padding: 32px 32px 28px;
	background: #ece7e4;
}

.frx-review__quote {
	margin-top: 28px;
	font-size: clamp(1.25rem, 1.72vw, 1.9rem);
	line-height: 1.28;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: #5e5a59;
}

.frx-review__author {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: auto;
	padding-top: 36px;
}

.frx-review__author-avatar {
	flex: 0 0 auto;
}

.frx-review__author-image {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.frx-review__author-name {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #090909;
}

.frx-review__author-role {
	margin-top: 6px;
	font-size: 1rem;
	line-height: 1.4;
	color: #666161;
}

.frx-team {
	padding: 110px 0 104px;
	background:
		radial-gradient(circle at 24% 18%, rgba(255, 93, 31, 0.14), transparent 20%),
		#050505;
	color: #f5f1ed;
}

.frx-team__title {
	margin: 0 0 74px;
	text-align: center;
	font-size: clamp(5.6rem, 15vw, 9.8rem);
	line-height: 0.86;
	font-weight: 400;
	letter-spacing: -0.1em;
}

.frx-team__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: end;
}

.frx-team__card:nth-child(2) {
	transform: translateY(46px);
}

.frx-team__media {
	position: relative;
	min-height: 500px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background:
		radial-gradient(circle at 16% 14%, rgba(255, 104, 44, 0.34), transparent 28%),
		linear-gradient(180deg, rgba(31, 31, 31, 0.96) 0%, rgba(14, 14, 14, 0.98) 100%);
	overflow: hidden;
}

.frx-team__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.frx-team__content {
	padding-top: 14px;
}

.frx-team__name {
	margin: 0;
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.04;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.frx-team__role {
	margin-top: 8px;
	font-size: 1.1rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.78);
}

.frx-pricing {
	padding: 86px 0 116px;
	background:
		radial-gradient(circle at 58% 44%, rgba(255, 109, 49, 0.08), transparent 24%),
		#1a1a1a;
	color: #f5f1ed;
}

.frx-pricing__title {
	margin: 0;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	font-size: clamp(5.8rem, 16vw, 10rem);
	line-height: 0.84;
	font-weight: 400;
	letter-spacing: -0.1em;
}

.frx-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 54px;
}

.frx-pricing__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: rgba(32, 32, 32, 0.92);
	overflow: hidden;
}

.frx-pricing__card.is-featured::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 82% 10%, rgba(255, 118, 54, 0.42), transparent 22%);
	pointer-events: none;
}

.frx-pricing__panel {
	position: relative;
	padding: 18px 16px 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	background: rgba(44, 44, 44, 0.8);
}

.frx-pricing__panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.frx-pricing__plan-name {
	font-size: 1.12rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
}

.frx-pricing__plan-star svg {
	width: 18px;
	height: 18px;
}

.frx-pricing__price-line {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.frx-pricing__price {
	font-size: clamp(2.8rem, 4vw, 4rem);
	line-height: 0.96;
	font-weight: 800;
	letter-spacing: -0.08em;
}

.frx-pricing__period {
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.72);
}

.frx-pricing__description {
	margin-top: 22px;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.76);
}

.frx-pricing__includes {
	margin: 26px 10px 18px;
	font-size: 1.08rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.82);
}

.frx-pricing__features {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0 10px;
	list-style: none;
}

.frx-pricing__features li {
	position: relative;
	padding-left: 16px;
	font-size: 1.08rem;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.frx-pricing__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff6d31;
}

.frx-pricing__button {
	width: 100%;
	margin-top: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 700;
}

.frx-pricing__card.is-featured .frx-pricing__button {
	background: linear-gradient(180deg, #ff7b38 0%, #ff5a1f 44%, #ef4a14 100%);
	border-color: transparent;
	box-shadow: 0 18px 40px rgba(255, 90, 31, 0.22);
}

.frx-faq {
	padding: 92px 0 118px;
	background: #f3eeeb;
	color: #151515;
}

.frx-faq__title {
	margin: 0;
	padding-bottom: 46px;
	font-size: clamp(5.8rem, 16vw, 10rem);
	line-height: 0.84;
	font-weight: 400;
	letter-spacing: -0.1em;
}

.frx-faq__list {
	border-top: 1px solid rgba(77, 71, 70, 0.16);
}

.frx-faq__item {
	border-bottom: 1px solid rgba(77, 71, 70, 0.16);
}

.frx-faq__summary {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr) 44px;
	gap: 24px;
	align-items: center;
	padding: 28px 0;
	list-style: none;
	cursor: pointer;
}

.frx-faq__summary::-webkit-details-marker {
	display: none;
}

.frx-faq__number,
.frx-faq__question,
.frx-faq__icon {
	color: #74706e;
}

.frx-faq__number {
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.frx-faq__question {
	font-size: clamp(1.4rem, 2vw, 2.1rem);
	line-height: 1.28;
	font-weight: 500;
	letter-spacing: -0.04em;
}

.frx-faq__icon {
	position: relative;
	width: 24px;
	height: 24px;
	justify-self: end;
}

.frx-faq__icon::before,
.frx-faq__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 22px;
	height: 1.5px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 220ms ease;
}

.frx-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.frx-faq__item[open] .frx-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.frx-faq__answer {
	max-width: 860px;
	padding: 0 0 28px 164px;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #7d7877;
}

.frx-contact {
	padding: 88px 0 0;
	background:
		radial-gradient(circle at 82% 10%, rgba(255, 108, 47, 0.22), transparent 20%),
		#050505;
	color: #f5f1ed;
	overflow: hidden;
}

.frx-contact__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	gap: clamp(38px, 6vw, 110px);
	padding-bottom: 72px;
}

.frx-contact__heading {
	font-size: clamp(4rem, 8vw, 6.8rem);
	line-height: 0.98;
	font-weight: 400;
	letter-spacing: -0.09em;
}

.frx-contact__heading-primary,
.frx-contact__heading-muted {
	display: block;
}

.frx-contact__heading-muted {
	color: rgba(255, 255, 255, 0.34);
}

.frx-contact__form,
.frx-contact__shortcode {
	display: grid;
	gap: 20px;
}

.frx-contact__field {
	display: grid;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.frx-contact__field span {
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.86);
}

.frx-contact__field input,
.frx-contact__field textarea {
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ffffff;
	outline: none;
	resize: vertical;
}

.frx-contact__button {
	justify-self: start;
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 152px;
	min-height: 54px;
	padding: 0 26px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #ff7b38 0%, #ff5a1f 44%, #ef4a14 100%);
	color: #fff7f1;
	font-weight: 700;
	cursor: pointer;
}

.frx-contact__footer,
.frx-contact__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.frx-contact__nav,
.frx-contact__utilities,
.frx-contact__socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.frx-contact__nav a,
.frx-contact__utilities a,
.frx-contact__copyright {
	font-size: 1.04rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}

.frx-contact__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	font-size: 0.96rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.frx-contact__brandmark {
	margin-top: 34px;
	font-size: clamp(7rem, 20vw, 17rem);
	line-height: 0.78;
	font-weight: 800;
	letter-spacing: -0.1em;
	color: var(--frx-accent);
	text-shadow: 0 10px 48px rgba(255, 90, 31, 0.16);
	transform: translateY(24%);
}

.frx-contact__brandmark-image {
	display: block;
	width: min(100%, 1420px);
	height: auto;
	margin-top: 34px;
	transform: translateY(24%);
	filter: drop-shadow(0 10px 48px rgba(255, 90, 31, 0.16));
}

.frx-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--frx-delay, 0ms), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--frx-delay, 0ms);
}

.frx-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.frx-generic-content {
	padding: 140px 0 80px;
}

.entry-title,
.page-title,
.frx-empty-state h1 {
	font-family: "Manrope", sans-serif;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	line-height: 0.96;
	letter-spacing: -0.06em;
	margin: 0 0 18px;
}

.entry-content,
.entry-excerpt,
.archive-description,
.frx-empty-state p {
	color: var(--frx-muted);
	font-size: 1.08rem;
	line-height: 1.72;
}

.frx-post-card {
	display: grid;
	grid-template-columns: minmax(220px, 340px) 1fr;
	gap: 28px;
	padding: 28px;
	border: 1px solid var(--frx-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.02);
	margin-bottom: 24px;
}

.frx-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px;
}

.frx-eyebrow {
	margin: 0 0 12px;
	color: var(--frx-accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.8rem;
}

.frx-empty-state {
	width: var(--frx-container);
	margin: 0 auto;
	padding: 180px 0 100px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	left: 12px;
	top: 12px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: #000;
	z-index: 999;
}

@media (max-width: 1200px) {
	.frx-hero__topline {
		grid-template-columns: 1fr 340px;
	}

	.frx-hero__content {
		grid-template-columns: 1fr 330px;
	}

	.frx-about__top,
	.frx-about__bottom,
	.frx-services__feature,
	.frx-services__row,
	.frx-contact__top {
		grid-template-columns: 1fr;
	}

	.frx-about__stats,
	.frx-pricing__grid,
	.frx-review__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.frx-review__feature {
		grid-template-columns: 1fr;
	}

	.frx-team__card:nth-child(2) {
		transform: none;
	}
}

@media (max-width: 1024px) {
	.frx-site-header__inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.frx-site-header__toggle {
		display: inline-flex;
	}

	.frx-site-header__nav,
	.frx-site-header__cta {
		display: none;
	}

	.frx-site-header.menu-open .frx-site-header__inner {
		grid-template-columns: auto;
	}

	.frx-site-header.menu-open .frx-site-header__nav,
	.frx-site-header.menu-open .frx-site-header__cta {
		display: flex;
	}

	.frx-site-header.menu-open .frx-site-header__nav {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 12px;
	}

	.frx-site-header.menu-open .frx-site-header__cta {
		width: 100%;
		margin-top: 8px;
	}

	.frx-hero {
		min-height: auto;
	}

	.frx-hero__topline,
	.frx-hero__content {
		grid-template-columns: 1fr;
	}

	.frx-hero__topline {
		margin-bottom: 56px;
	}

	.frx-hero__copy {
		margin-left: 0;
		max-width: 100%;
	}

	.frx-hero__right {
		max-width: 460px;
	}

	.frx-post-card {
		grid-template-columns: 1fr;
	}

	.frx-about__bottom {
		margin-top: 56px;
	}

	.frx-about__stats,
	.frx-pricing__grid,
	.frx-team__grid,
	.frx-review__grid {
		grid-template-columns: 1fr;
	}

	.frx-about__stat-card,
	.frx-team__media {
		min-height: 320px;
	}

	.frx-works__card:nth-child(odd),
	.frx-works__card:nth-child(even) {
		width: 100%;
		transform: none;
	}

	.frx-works__card + .frx-works__card {
		margin-top: 18px;
	}

	.frx-review__feature-media,
	.frx-review__featured-card {
		min-height: 260px;
	}

	.frx-faq__summary {
		grid-template-columns: 84px minmax(0, 1fr) 36px;
	}

	.frx-faq__answer {
		padding-left: 108px;
	}

	.frx-contact__footer,
	.frx-contact__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	:root {
		--frx-container: min(100% - 24px, 1440px);
	}

	.admin-bar .frx-site-header {
		top: 46px;
	}

	.frx-site-header__brand-text {
		font-size: 1.7rem;
	}

	.frx-hero__status {
		font-size: 0.96rem;
	}

	.frx-hero__copy {
		font-size: 1.25rem;
		line-height: 1.16;
	}

	.frx-hero__intro {
		font-size: clamp(2rem, 9vw, 3rem);
	}

	.frx-hero__brand {
		font-size: clamp(4rem, 21vw, 6rem);
	}

	.frx-hero__cta {
		min-height: 68px;
		font-size: 1.05rem;
	}

	.frx-hero__service-card {
		padding: 14px 16px;
	}

	.frx-hero__service-link {
		font-size: 1rem;
		padding: 16px 0;
	}

	.frx-generic-content,
	.frx-empty-state {
		padding-top: 120px;
	}

	.frx-about,
	.frx-services,
	.frx-review,
	.frx-team,
	.frx-pricing,
	.frx-faq,
	.frx-contact {
		padding-top: 72px;
	}

	.frx-about {
		padding-bottom: 86px;
	}

	.frx-services,
	.frx-review,
	.frx-pricing,
	.frx-faq {
		padding-bottom: 86px;
	}

	.frx-team {
		padding-bottom: 92px;
	}

	.frx-contact {
		padding-top: 72px;
	}

	.frx-about__stats {
		grid-template-columns: 1fr;
	}

	.frx-about__stat-card {
		min-height: 260px;
		padding: 24px;
	}

	.frx-services__feature-media,
	.frx-services__feature-image {
		min-height: 220px;
	}

	.frx-services__row {
		padding: 28px 0;
	}

	.frx-works {
		padding-top: 20px;
		padding-bottom: 72px;
	}

	.frx-works__view {
		top: 18px;
		left: 18px;
		width: 88px;
		height: 88px;
		font-size: 1.15rem;
	}

	.frx-works__year {
		top: 18px;
		right: 18px;
		font-size: 0.98rem;
	}

	.frx-works__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.frx-works__tag {
		padding: 11px 18px;
		font-size: 0.95rem;
	}

	.frx-team__title,
	.frx-review__title,
	.frx-pricing__title,
	.frx-faq__title,
	.frx-services__title,
	.frx-about__title,
	.frx-contact__heading {
		letter-spacing: -0.08em;
	}

	.frx-team__media {
		min-height: 360px;
	}

	.frx-review__title {
		margin-bottom: 40px;
	}

	.frx-review__featured-card {
		min-height: 240px;
		padding: 24px;
	}

	.frx-review__feature-media {
		min-height: 240px;
	}

	.frx-review__card {
		min-height: 320px;
		padding: 24px;
	}

	.frx-pricing__card {
		padding: 10px;
	}

	.frx-faq__summary {
		grid-template-columns: 1fr auto;
		gap: 16px;
	}

	.frx-faq__number {
		grid-column: 1 / -1;
	}

	.frx-faq__answer {
		padding: 0 0 22px;
	}

	.frx-contact__top {
		padding-bottom: 42px;
	}

	.frx-contact__nav,
	.frx-contact__utilities,
	.frx-contact__socials {
		gap: 12px;
	}

	.frx-contact__brandmark {
		margin-top: 18px;
		transform: translateY(16%);
	}

	.frx-contact__brandmark-image {
		margin-top: 18px;
		transform: translateY(16%);
	}
}

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

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