:root {
	--accent: #e30613;
	--ink: #101116;
	--body: #26282e;
	--muted: #6b6e74;
	--line: #e7e4dd;
	--surface: #f4f3f0;
	--shell: 1650px;
	--gutter: 40px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--body);
	font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

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

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

a:focus-visible,
button:focus-visible {
	outline: 3px solid rgba(227, 6, 19, 0.34);
	outline-offset: 3px;
}

::selection {
	background: var(--accent);
	color: #fff;
}

.shell {
	width: min(100%, var(--shell));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section {
	padding-top: 76px;
}

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid transparent;
	color: #fff;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

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

.site-header.is-scrolled {
	border-color: rgba(224, 221, 214, 0.9);
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
	box-shadow: 0 8px 28px rgba(20, 20, 24, 0.05);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	display: flex;
	min-height: 73px;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.brand {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: 10px;
	color: inherit;
	text-decoration: none;
}

.brand__logos {
	position: relative;
	display: block;
	width: 65px;
	height: 22px;
}

.brand__logo {
	position: absolute;
	inset: 0 auto auto 0;
	width: auto;
	height: 21px;
	transition: opacity 220ms ease;
}

.brand__logo--dark {
	opacity: 0;
}

.site-header.is-scrolled .brand__logo--light {
	opacity: 0;
}

.site-header.is-scrolled .brand__logo--dark {
	opacity: 1;
}

.brand__suffix,
.brand--dark span {
	padding-left: 11px;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.site-header.is-scrolled .brand__suffix {
	border-color: var(--line);
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 1.7vw, 28px);
}

.primary-nav a {
	position: relative;
	padding: 26px 0 24px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.primary-nav a::after {
	position: absolute;
	bottom: 18px;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
	color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header.is-scrolled .primary-nav a {
	color: #5c5f66;
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.is-active {
	color: var(--ink);
}

.site-header__actions {
	display: flex;
	flex: none;
	align-items: center;
	gap: 13px;
}

.language-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.language-pill i,
.eyebrow i,
.hero__meta i {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.site-header.is-scrolled .language-pill,
.site-header.is-scrolled .menu-toggle {
	border-color: var(--line);
}

.pill-button {
	display: inline-flex;
	min-height: 43px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 7px 7px 7px 21px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.1;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.pill-button--dark {
	background: #16171b;
	color: #fff;
}

.pill-button--dark:hover {
	background: #000;
	box-shadow: 0 12px 28px rgba(15, 16, 20, 0.16);
}

.pill-button--light {
	background: #fff;
	color: #16171b;
}

.pill-button--light:hover {
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.pill-button--outline {
	padding: 10px 23px;
	border-color: rgba(255, 255, 255, 0.32);
	background: transparent;
	color: #fff;
}

.pill-button--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.pill-button--header {
	min-height: 40px;
	padding-left: 18px;
}

.pill-button--large {
	min-height: 54px;
	padding-left: 26px;
	font-size: 16px;
}

.button-icon {
	display: inline-flex !important;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-size: 14px !important;
	line-height: 30px !important;
}

.pill-button--large .button-icon {
	width: 36px;
	height: 36px;
	line-height: 36px !important;
}

.menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.menu-toggle .dashicons {
	font-size: 21px;
}

.mobile-nav {
	position: absolute;
	top: 100%;
	left: 0;
	display: flex;
	width: 100%;
	max-height: calc(100vh - 73px);
	flex-direction: column;
	overflow-y: auto;
	padding: 12px var(--gutter) 24px;
	border-top: 1px solid var(--line);
	background: #fff;
	box-shadow: 0 22px 35px rgba(20, 20, 24, 0.12);
}

.mobile-nav[hidden] {
	display: none;
}

.mobile-nav a {
	padding: 14px 5px;
	border-bottom: 1px solid #f0eee9;
	color: var(--ink);
	font-size: 15px;
	font-weight: 650;
	text-decoration: none;
}

.language-pill--mobile {
	width: fit-content;
	margin-top: 16px;
	border-color: var(--line);
	color: var(--ink);
}

.hero {
	position: relative;
	display: flex;
	min-height: 77vh;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	background: #0a0b0f;
	color: #fff;
}

.hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero__media::before,
.hero__media::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
	content: "";
}

.hero__media::before {
	background:
		radial-gradient(110% 90% at 50% 16%, transparent 38%, rgba(6, 7, 10, 0.6) 100%),
		linear-gradient(100deg, rgba(8, 9, 12, 0.97) 0%, rgba(8, 9, 12, 0.74) 27%, rgba(8, 9, 12, 0.3) 51%, rgba(8, 9, 12, 0.04) 77%),
		linear-gradient(0deg, rgba(6, 7, 10, 0.58) 0%, transparent 36%);
}

.hero__media::after {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
	background-size: 60px 60px;
	mix-blend-mode: overlay;
	opacity: 0.54;
	animation: grid-drift 10s linear infinite alternate;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 50%;
	opacity: 0.94;
	transform: scale(1.015);
	animation: hero-breathe 13s ease-in-out infinite alternate;
}

.hero__content,
.hero__meta {
	position: relative;
	z-index: 2;
}

.hero__content {
	display: flex;
	align-items: flex-end;
}

.hero__copy {
	max-width: 770px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 22px;
	color: #8b6a6d;
	font-size: 12.5px;
	font-weight: 750;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #e8e9ec;
}

.hero h1 {
	max-width: 760px;
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(42px, 5.2vw, 76px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.01;
	text-wrap: balance;
}

.hero__lead {
	max-width: 560px;
	margin: 0 0 36px;
	color: #c7c9ce;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.55;
}

.hero__actions,
.distributor__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 34px;
	margin-top: 58px;
	padding-bottom: 34px;
}

.hero__meta::before {
	position: absolute;
	top: 0;
	left: var(--gutter);
	right: var(--gutter);
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
	content: "";
}

.hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-top: 20px;
	color: #aeb0b6;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__meta i {
	width: 5px;
	height: 5px;
}

.intro__layout {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}

.intro__copy {
	max-width: 680px;
	margin: 0;
	color: #26282e;
	font-size: clamp(18px, 1.7vw, 23px);
	letter-spacing: -0.006em;
	line-height: 1.5;
	text-wrap: balance;
}

.intro__points {
	display: grid;
	width: min(100%, 350px);
	gap: 14px;
}

.intro__points > div {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-size: 14.5px;
	font-weight: 650;
}

.intro__points .dashicons {
	display: inline-flex;
	width: 36px;
	height: 36px;
	flex: none;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #f4f2ee;
	color: var(--accent);
	font-size: 18px;
	line-height: 36px;
}

.category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 38px;
}

.category-pills span {
	padding: 8px 16px;
	border: 1px solid #e4e0d8;
	border-radius: 999px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 650;
}

.category-pills span.is-active {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.featured {
	padding-top: 88px;
	padding-bottom: 8px;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.section-heading > div {
	max-width: 590px;
}

.section-heading h2,
.why h2,
.distributor h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(26px, 2.4vw, 34px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.section-heading p {
	margin: 10px 0 0;
	color: #5c5f66;
	font-size: 15.5px;
	line-height: 1.55;
}

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

.product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #edebe6;
	border-radius: 24px;
	background: #fff;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.product-card:hover {
	border-color: transparent;
	box-shadow: 0 24px 48px rgba(40, 36, 30, 0.1);
	transform: translateY(-3px);
}

.product-card__image {
	display: flex;
	height: 222px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f4f3f0;
}

.product-card__image img {
	width: auto;
	max-width: 78%;
	height: auto;
	max-height: 198px;
	object-fit: contain;
	filter: drop-shadow(0 14px 18px rgba(30, 30, 35, 0.14));
	transition: transform 260ms ease;
}

.product-card:first-child .product-card__image img {
	max-height: 172px;
}

.product-card:hover .product-card__image img {
	transform: scale(1.035);
}

.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 26px 26px;
}

.product-card__category {
	margin: 0 0 9px !important;
	color: var(--accent) !important;
	font-size: 11px !important;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.product-card h3 {
	margin: 0 0 8px;
	color: #16171b;
	font-size: 19px;
	font-weight: 750;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.product-card__body > p {
	margin: 0 0 16px;
	color: #6b6e74;
	font-size: 13.5px;
	line-height: 1.55;
}

.product-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.product-card__tags span {
	padding: 5px 11px;
	border: 1px solid #eceae5;
	border-radius: 999px;
	color: #5c5f66;
	font-size: 11.5px;
	font-weight: 650;
}

.product-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #f2f0ec;
	color: var(--ink);
	font-size: 13.5px;
	font-weight: 750;
	text-decoration: none;
}

.product-card__link i {
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f4f2ee;
	font-size: 14px;
	line-height: 30px;
	transition: background-color 180ms ease, color 180ms ease;
}

.product-card__link:hover i {
	background: var(--accent);
	color: #fff;
}

.why {
	position: relative;
	overflow: hidden;
	margin-top: 96px;
	padding: 76px 0;
	background: #16171b;
}

.why::before,
.distributor::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 46px 46px;
	content: "";
	pointer-events: none;
}

.why__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(48px, 6vw, 96px);
}

.why h2 {
	color: #fff;
	font-size: clamp(26px, 2.2vw, 32px);
}

.why__copy > p {
	margin: 14px 0 26px;
	color: #a7aab0;
	font-size: 15px;
	line-height: 1.6;
}

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

.benefit-grid > div {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	transition: background-color 180ms ease, transform 180ms ease;
}

.benefit-grid > div:hover {
	background: rgba(255, 255, 255, 0.085);
	transform: translateY(-2px);
}

.benefit-grid i {
	color: var(--accent);
	font-size: 23px;
}

.benefit-grid strong {
	color: #fff;
	font-size: 14px;
	font-weight: 750;
}

.distributor {
	position: relative;
	overflow: hidden;
	padding: 130px var(--gutter);
	background: linear-gradient(175deg, #edebe6 0%, #f6f5f2 42%, #fff 100%);
	text-align: center;
}

.distributor::before {
	background-image:
		linear-gradient(rgba(16, 17, 22, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 17, 22, 0.035) 1px, transparent 1px);
	background-size: 52px 52px;
}

.distributor::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.92), transparent);
	content: "";
	pointer-events: none;
}

.distributor__inner {
	position: relative;
	z-index: 1;
	display: flex;
	max-width: 780px;
	margin: 0 auto;
	flex-direction: column;
	align-items: center;
}

.distributor h2 {
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.04;
	text-wrap: balance;
}

.distributor__inner > p:not(.eyebrow) {
	max-width: 600px;
	margin: 20px 0 38px;
	color: #5c5f66;
	font-size: 17px;
	line-height: 1.6;
}

.distributor__actions {
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.text-link {
	padding: 12px 4px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.text-link:hover {
	color: var(--accent);
}

.site-footer {
	padding-top: 52px;
	border-top: 1px solid #eceae5;
	background: #fff;
}

.site-footer__main {
	display: flex;
	justify-content: space-between;
	gap: 48px;
}

.site-footer__brand {
	max-width: 320px;
}

.brand--dark img {
	width: auto;
	height: 20px;
}

.brand--dark span {
	border-color: #e4e0d8;
	color: var(--ink);
	font-size: 12px;
}

.site-footer__brand > p {
	margin: 14px 0 0;
	color: #8b8e95;
	font-size: 13px;
	line-height: 1.6;
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(130px, auto));
	gap: clamp(30px, 4vw, 60px);
}

.site-footer__links > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.site-footer__links strong {
	margin-bottom: 14px;
	color: var(--ink);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.1em;
}

.site-footer__links a {
	margin-bottom: 10px;
	color: #6b6e74;
	font-size: 13.5px;
	text-decoration: none;
}

.site-footer__links a:hover {
	color: var(--accent);
}

.site-footer__bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
	padding: 18px 0 22px;
	border-top: 1px solid #eceae5;
}

.site-footer__bottom p {
	max-width: 800px;
	margin: 0;
	color: #b4b6ba;
	font-size: 10.5px;
	line-height: 1.6;
}

.site-footer__bottom > div {
	display: flex;
	flex: none;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.site-footer__bottom span,
.site-footer__bottom a {
	color: #b4b6ba;
	font-size: 10.5px;
	text-decoration: none;
}

.site-footer__bottom a:hover {
	color: var(--accent);
}

.fcar-basic-page__inner {
	width: min(100% - 40px, 980px);
	margin: 60px auto;
}

.fcar-basic-page__inner article {
	margin-top: 60px;
}

@keyframes grid-drift {
	from { background-position: 0 0, 0 0; }
	to { background-position: 60px 60px, 60px 60px; }
}

@keyframes hero-breathe {
	from { transform: scale(1.015); }
	to { transform: scale(1.045); }
}

@media (max-width: 1279px) {
	.primary-nav {
		gap: 17px;
	}

	.primary-nav a {
		font-size: 13px;
	}

	.language-pill {
		display: none;
	}
}

@media (max-width: 1120px) {
	.primary-nav {
		display: none;
	}

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

	.site-header:not(.is-scrolled):has(.mobile-nav:not([hidden])) {
		background: rgba(255, 255, 255, 0.96);
		color: var(--ink);
	}

	.site-header:not(.is-scrolled):has(.mobile-nav:not([hidden])) .brand__logo--light {
		opacity: 0;
	}

	.site-header:not(.is-scrolled):has(.mobile-nav:not([hidden])) .brand__logo--dark {
		opacity: 1;
	}

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

	.why__copy {
		max-width: 520px;
	}
}

@media (max-width: 900px) {
	.product-grid {
		grid-template-columns: 1fr;
	}

	.product-card {
		display: grid;
		grid-template-columns: minmax(260px, 38%) 1fr;
	}

	.product-card__image {
		height: 100%;
		min-height: 290px;
	}

	.site-footer__main {
		flex-direction: column;
	}

	.site-footer__links {
		width: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		min-height: 68px;
	}

	.pill-button--header span:first-child {
		display: none;
	}

	.pill-button--header {
		min-width: 40px;
		min-height: 40px;
		padding: 4px;
	}

	.pill-button--header .button-icon {
		width: 30px;
		height: 30px;
	}

	.hero__media img {
		object-position: 64% 50%;
	}

	.hero__media::before {
		background:
			linear-gradient(0deg, rgba(7, 8, 11, 0.9) 0%, rgba(7, 8, 11, 0.42) 58%, rgba(7, 8, 11, 0.42) 100%),
			linear-gradient(100deg, rgba(8, 9, 12, 0.84) 0%, rgba(8, 9, 12, 0.2) 88%);
	}

	.hero h1 {
		max-width: 620px;
		font-size: clamp(42px, 9vw, 62px);
	}

	.intro__layout,
	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.intro__points {
		width: 100%;
		max-width: none;
		grid-template-columns: repeat(3, 1fr);
	}

	.intro__points > div {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.distributor {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

@media (max-width: 620px) {
	:root {
		--gutter: 20px;
	}

	.section {
		padding-top: 60px;
	}

	.brand__logos {
		width: 56px;
		height: 19px;
	}

	.brand__logo {
		height: 18px;
	}

	.brand__suffix {
		padding-left: 9px;
		font-size: 11px;
	}

	.site-header__actions {
		gap: 8px;
	}

	.hero {
		min-height: max(700px, 100svh);
	}

	.hero h1 {
		font-size: clamp(39px, 12vw, 54px);
	}

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

	.hero__actions .pill-button {
		width: 100%;
	}

	.hero__meta {
		gap: 10px 20px;
		margin-top: 44px;
	}

	.hero__meta span {
		font-size: 10.5px;
	}

	.intro__layout {
		gap: 34px;
	}

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

	.intro__points > div {
		align-items: center;
		flex-direction: row;
	}

	.featured {
		padding-top: 74px;
	}

	.product-card {
		display: flex;
	}

	.product-card__image {
		height: 220px;
		min-height: 0;
	}

	.product-card__body {
		padding: 22px 22px 24px;
	}

	.why {
		margin-top: 76px;
		padding: 68px 0;
	}

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

	.benefit-grid > div {
		min-height: 112px;
		padding: 17px 15px;
	}

	.distributor {
		padding-top: 84px;
		padding-bottom: 84px;
	}

	.distributor__actions {
		width: 100%;
		flex-direction: column;
	}

	.distributor__actions .pill-button {
		width: 100%;
	}

	.site-footer__links {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__links > div:last-child {
		grid-column: 1 / -1;
	}

	.site-footer__bottom {
		flex-direction: column;
	}

	.site-footer__bottom > div {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
