:root {
	--ep-home-ink: #07111d;
	--ep-home-ink-soft: #0c1f32;
	--ep-home-navy: #102f4a;
	--ep-home-blue: #087fc1;
	--ep-home-blue-bright: #17a8e5;
	--ep-home-blue-pale: #a9e3fa;
	--ep-home-white: #ffffff;
	--ep-home-paper: #f4f6f7;
	--ep-home-line: #d3dde4;
	--ep-home-text: #132a3d;
	--ep-home-muted: #607180;
}

.ep-home,
.ep-home * {
	box-sizing: border-box;
}

body.home {
	overflow-x: hidden;
	overflow-x: clip;
}

.ep-home {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin: 0 0 0 -50vw;
	overflow: hidden;
	overflow: clip;
	background: var(--ep-home-white);
	color: var(--ep-home-text);
	font-size: 16px;
	line-height: 1.65;
}

.ep-home-shell {
	width: min(1240px, calc(100% - 52px));
	margin-inline: auto;
}

.ep-home h1,
.ep-home h2,
.ep-home h3,
.ep-home p,
.ep-home dl,
.ep-home dd {
	margin-top: 0;
}

.ep-home h1,
.ep-home h2,
.ep-home h3 {
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
	font-weight: 900;
	letter-spacing: -0.035em;
}

.ep-home h1 {
	margin-bottom: 26px;
	color: var(--ep-home-white);
	font-size: clamp(3.25rem, 6.4vw, 6.8rem);
	line-height: 0.94;
	text-transform: uppercase;
}

.ep-home h1 strong {
	display: block;
	color: #68c9f2;
	font: inherit;
}

.ep-home h2 {
	margin-bottom: 20px;
	color: var(--ep-home-ink);
	font-size: clamp(2.25rem, 4.4vw, 4.5rem);
	line-height: 0.98;
	text-transform: uppercase;
}

.ep-home h3 {
	margin-bottom: 10px;
	font-size: 1.18rem;
	line-height: 1.22;
}

.ep-home-kicker {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 20px;
	color: var(--ep-home-blue-pale);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ep-home-kicker > span {
	display: block;
	width: 38px;
	height: 3px;
	background: currentColor;
}

.ep-home-kicker--blue {
	color: var(--ep-home-blue);
}

.ep-home-kicker--light {
	color: #bdeaff;
}

.ep-home-hero {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	padding: clamp(92px, 10vw, 150px) 0 clamp(145px, 14vw, 205px);
	background:
		radial-gradient(circle at 83% 24%, rgba(17, 151, 214, 0.3), transparent 25%),
		radial-gradient(circle at 58% 78%, rgba(10, 94, 162, 0.27), transparent 34%),
		linear-gradient(116deg, #03080e 0%, #081524 50%, #0b253a 100%);
}

.ep-home-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 54px 54px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, #000 44%, #000);
}

.ep-home-hero::after {
	position: absolute;
	top: -38%;
	right: -14%;
	width: min(68vw, 980px);
	aspect-ratio: 1;
	border: 1px solid rgba(104, 201, 242, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 100px rgba(104, 201, 242, 0.025),
		0 0 0 200px rgba(104, 201, 242, 0.018);
	content: "";
}

.ep-home-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.75fr);
	gap: clamp(58px, 8vw, 120px);
	align-items: center;
}

.ep-home-lead {
	max-width: 700px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.03rem, 1.5vw, 1.22rem);
	line-height: 1.7;
}

.ep-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-bottom: 31px;
}

.ep-home-actions--center {
	justify-content: center;
	margin-bottom: 0;
}

.ep-home-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 14px 23px;
	border: 2px solid transparent;
	border-radius: 3px;
	font-size: 0.79rem;
	font-weight: 900;
	letter-spacing: 0.055em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.ep-home-button--solid,
.ep-home-button--blue {
	background: var(--ep-home-blue);
	color: var(--ep-home-white) !important;
}

.ep-home-button--solid:hover,
.ep-home-button--blue:hover {
	background: var(--ep-home-blue-bright);
}

.ep-home-button--outline,
.ep-home-button--outline-light {
	border-color: rgba(255, 255, 255, 0.76);
	background: transparent;
	color: var(--ep-home-white) !important;
}

.ep-home-button--outline:hover,
.ep-home-button--outline-light:hover {
	border-color: var(--ep-home-white);
	background: var(--ep-home-white);
	color: var(--ep-home-ink) !important;
}

.ep-home-button--light {
	background: var(--ep-home-white);
	color: var(--ep-home-ink) !important;
}

.ep-home-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	max-width: 650px;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(10px);
}

.ep-home-search input[type="search"] {
	min-width: 0;
	height: 48px;
	padding: 8px 14px;
	border: 1px solid rgba(169, 227, 250, 0.9);
	border-radius: 2px;
	background: rgba(237, 248, 252, 0.97);
	box-shadow: none;
	color: var(--ep-home-navy);
	font-size: 0.96rem;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ep-home-search input[type="search"]::placeholder {
	color: #587389;
	opacity: 1;
}

.ep-home-search input[type="search"]:focus {
	border-color: #68c9f2;
	background: var(--ep-home-white);
	box-shadow: inset 0 0 0 1px rgba(17, 125, 173, 0.16);
	outline: 0;
}

.ep-home-search:focus-within {
	border-color: rgba(104, 201, 242, 0.78);
	box-shadow: 0 0 0 3px rgba(70, 190, 241, 0.18);
}

.ep-home-search button {
	display: inline-flex;
	min-width: 112px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 15px;
	border: 0;
	border-radius: 2px;
	background: var(--ep-home-white);
	color: var(--ep-home-ink);
	font-size: 0.77rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.ep-home-search button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 2;
}

.ep-home-button:focus-visible,
.ep-home-search input:focus-visible,
.ep-home-search button:focus-visible,
.ep-home a:focus-visible,
.ep-home summary:focus-visible {
	outline: 3px solid rgba(70, 190, 241, 0.48);
	outline-offset: 3px;
}

.ep-home-hero__visual {
	position: relative;
	min-height: 500px;
	display: grid;
	place-items: center;
}

.ep-home-contour {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	fill: none;
	filter: drop-shadow(0 0 18px rgba(55, 182, 237, 0.16));
	stroke: rgba(104, 201, 242, 0.22);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.ep-home-contour circle {
	fill: #69cef7;
	stroke: rgba(255, 255, 255, 0.45);
}

.ep-home-record {
	position: relative;
	z-index: 2;
	width: min(100%, 445px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 8px;
	background: rgba(4, 13, 23, 0.84);
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(14px);
}

.ep-home-record header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	background: linear-gradient(90deg, rgba(11, 118, 181, 0.38), transparent);
}

.ep-home-record header span,
.ep-home-record header strong {
	display: block;
}

.ep-home-record header span {
	margin-bottom: 2px;
	color: #8cd9f8;
	font-size: 0.67rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ep-home-record header strong {
	color: var(--ep-home-white);
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.015em;
	line-height: 1.22;
	text-transform: uppercase;
}

.ep-home-record header b {
	display: inline-flex;
	min-width: 50px;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid rgba(120, 218, 255, 0.45);
	border-radius: 3px;
	background: rgba(10, 125, 186, 0.32);
	color: #bdeaff;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
}

.ep-home-record dl {
	margin-bottom: 0;
	padding: 8px 22px;
}

.ep-home-record dl > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-home-record dl > div:last-child {
	border-bottom: 0;
}

.ep-home-record dt,
.ep-home-record dd {
	font-size: 0.8rem;
	line-height: 1.45;
}

.ep-home-record dt {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.ep-home-record dd {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 650;
	letter-spacing: 0.005em;
}

.ep-home-record footer {
	padding: 15px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: #8cd9f8;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.ep-home-hero__angle {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: clamp(84px, 8vw, 130px);
	background: #0877bb;
	clip-path: polygon(0 82%, 100% 0, 100% 100%, 0 100%);
}

.ep-home-proof {
	padding: 24px 0 31px;
	background: linear-gradient(90deg, #0877bb, #0a91d1);
	color: var(--ep-home-white);
}

.ep-home-proof__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ep-home-proof__grid > div {
	display: flex;
	min-height: 52px;
	align-items: center;
	gap: 12px;
	padding: 6px 23px;
	border-right: 1px solid rgba(255, 255, 255, 0.27);
}

.ep-home-proof__grid > div:first-child {
	padding-left: 0;
}

.ep-home-proof__grid > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.ep-home-proof span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.67rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.ep-home-proof strong {
	font-size: 0.75rem;
	letter-spacing: 0.035em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ep-home-catalog {
	padding: clamp(92px, 10vw, 148px) 0;
	background: var(--ep-home-white);
}

.ep-home-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 44px;
}

.ep-home-section-head h2 {
	margin-bottom: 0;
}

.ep-home-section-head > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ep-home-blue);
	color: var(--ep-home-ink) !important;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.ep-home-section-head > a span {
	color: var(--ep-home-blue);
	font-size: 1rem;
}

.ep-home-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.ep-home-product {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--ep-home-line);
	border-radius: 5px;
	background: var(--ep-home-white);
	box-shadow: 0 12px 30px rgba(7, 17, 29, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ep-home-product:hover {
	border-color: #a8c6d8;
	box-shadow: 0 20px 42px rgba(7, 17, 29, 0.12);
	transform: translateY(-5px);
}

.ep-home-product__image {
	position: relative;
	display: block;
	aspect-ratio: 1 / 0.91;
	overflow: hidden;
	background:
		linear-gradient(135deg, transparent 72%, rgba(9, 128, 193, 0.08) 72%),
		var(--ep-home-paper);
}

.ep-home-product__image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: contain !important;
	transform: scale(0.9);
	transition: transform 260ms ease;
}

.ep-home-product:hover .ep-home-product__image img {
	transform: scale(0.95);
}

.ep-home-product__image > span {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 8px;
	border-radius: 2px;
	background: var(--ep-home-blue);
	color: var(--ep-home-white);
	font-size: 0.6rem;
	font-weight: 900;
	letter-spacing: 0.065em;
	line-height: 1;
	text-transform: uppercase;
}

.ep-home-product__body {
	display: flex;
	min-height: 206px;
	flex-direction: column;
	padding: 21px 20px 20px;
}

.ep-home-product__body > p {
	margin-bottom: 7px;
	color: var(--ep-home-blue);
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ep-home-product h3 {
	margin-bottom: 11px;
	font-size: 1.06rem;
	letter-spacing: -0.015em;
	line-height: 1.25;
}

.ep-home-product h3 a {
	color: var(--ep-home-ink) !important;
	text-decoration: none !important;
}

.ep-home-product__price {
	margin-bottom: 20px;
	color: var(--ep-home-blue);
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.4;
}

.ep-home-product__price del {
	margin-right: 7px;
	color: #88949d;
	font-weight: 600;
	opacity: 1;
}

.ep-home-product__price ins {
	color: var(--ep-home-blue);
	font-weight: 900;
	text-decoration: none;
}

.ep-home-product__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid var(--ep-home-line);
	color: var(--ep-home-ink) !important;
	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.ep-home-product__link span {
	color: var(--ep-home-blue);
	font-size: 1.05rem;
}

.ep-home-catalog-empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 28px;
	border: 1px solid var(--ep-home-line);
	background: var(--ep-home-paper);
}

.ep-home-catalog-empty p {
	margin-bottom: 0;
}

.ep-home-standards {
	position: relative;
	overflow: hidden;
	padding: clamp(132px, 10vw, 176px) 0;
	background:
		radial-gradient(circle at 76% 34%, rgba(104, 201, 242, 0.2), transparent 27%),
		linear-gradient(125deg, #073c78, #086cae 56%, #0b87c5);
	clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
	color: var(--ep-home-white);
}

.ep-home-standards::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(125deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(35deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 80px 80px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, #000 44%);
}

.ep-home-standards__angle {
	display: none;
}

.ep-home-standards__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(390px, 0.8fr) minmax(560px, 1.2fr);
	gap: clamp(52px, 6.5vw, 94px);
	align-items: center;
}

.ep-home-standards h2,
.ep-home-standards h3,
.ep-home-standards p {
	color: var(--ep-home-white);
}

.ep-home-standards h2 {
	max-width: 600px;
	font-size: clamp(2.55rem, 3.85vw, 4.15rem);
	line-height: 1;
}

.ep-home-standards__intro > p:not(.ep-home-kicker) {
	max-width: 580px;
	margin-bottom: 30px;
	opacity: 0.82;
}

.ep-home-standard-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.ep-home-standard-cards article {
	position: relative;
	display: grid;
	min-height: 138px;
	grid-template-columns: 42px minmax(170px, 0.72fr) minmax(0, 1.28fr);
	gap: 22px;
	align-items: center;
	overflow: hidden;
	padding: 23px 25px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 5px;
	background: rgba(3, 13, 24, 0.62);
	box-shadow: 0 20px 38px rgba(2, 15, 28, 0.15);
	backdrop-filter: blur(8px);
	transition:
		border-color 220ms ease,
		background-color 220ms ease,
		transform 220ms ease;
}

.ep-home-standard-cards article::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 3px;
	background: #79d5ff;
	content: "";
	opacity: 0.72;
}

.ep-home-standard-cards article:hover {
	border-color: rgba(255, 255, 255, 0.46);
	background: rgba(3, 13, 24, 0.72);
	transform: translateX(-4px);
}

.ep-home-standard-cards article:last-child {
	grid-column: auto;
}

.ep-home-standard-cards article > span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	border: 1px solid rgba(125, 216, 255, 0.5);
	color: #bdeaff;
	font-size: 0.67rem;
	font-weight: 900;
}

.ep-home-standard-cards h3 {
	margin-bottom: 0;
	font-size: 1.16rem;
	line-height: 1.2;
	text-transform: uppercase;
}

.ep-home-standard-cards p {
	margin-bottom: 0;
	font-size: 0.87rem;
	line-height: 1.68;
	opacity: 0.76;
}

.ep-home-faq {
	padding: clamp(100px, 11vw, 165px) 0;
	background: var(--ep-home-white);
}

.ep-home-faq__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
	gap: clamp(55px, 10vw, 145px);
}

.ep-home-faq__heading {
	position: sticky;
	top: 42px;
	align-self: start;
}

.ep-home-faq__heading > p:last-child {
	max-width: 390px;
	margin-bottom: 0;
	color: var(--ep-home-muted);
}

.ep-home-faq__items {
	border-top: 1px solid var(--ep-home-line);
}

.ep-home-faq details {
	border-bottom: 1px solid var(--ep-home-line);
}

.ep-home-faq summary {
	position: relative;
	display: flex;
	min-height: 86px;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	padding: 22px 4px;
	color: var(--ep-home-ink);
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(1.08rem, 1.8vw, 1.4rem);
	font-weight: 900;
	letter-spacing: -0.015em;
	line-height: 1.3;
	list-style: none;
	text-transform: uppercase;
	cursor: pointer;
}

.ep-home-faq summary::-webkit-details-marker {
	display: none;
}

.ep-home-faq summary > span {
	position: relative;
	display: inline-flex;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border: 1px solid var(--ep-home-blue);
	border-radius: 50%;
}

.ep-home-faq summary > span::before,
.ep-home-faq summary > span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--ep-home-blue);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.ep-home-faq summary > span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.ep-home-faq details[open] summary {
	color: var(--ep-home-blue);
}

.ep-home-faq details[open] summary > span::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.ep-home-faq details > p {
	max-width: 690px;
	margin-bottom: 0;
	padding: 0 52px 28px 4px;
	color: var(--ep-home-muted);
	line-height: 1.75;
}

.ep-home-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(100px, 11vw, 160px) 0;
	background: linear-gradient(135deg, #0c2c50 0%, #071423 55%, #02070d 100%);
	color: var(--ep-home-white);
	text-align: center;
}

.ep-home-cta__grid {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 0, rgba(17, 160, 224, 0.22), transparent 38%),
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: auto, 48px 48px, 48px 48px;
}

.ep-home-cta__inner {
	position: relative;
	z-index: 1;
}

.ep-home-cta .ep-home-kicker {
	justify-content: center;
}

.ep-home-cta h2 {
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	color: var(--ep-home-white);
	font-size: clamp(2.65rem, 5.8vw, 5.8rem);
}

.ep-home-cta__inner > p:not(.ep-home-kicker) {
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.72);
}

.ep-business-status {
	position: relative;
	width: 100%;
	padding: 23px 0;
	background: #02070d;
	color: rgba(255, 255, 255, 0.72);
}

.ep-business-status__inner,
.ep-business-status__line {
	width: min(1240px, calc(100% - 52px));
	margin-inline: auto;
}

.ep-business-status__line {
	display: block;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.7) 80%, transparent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ep-business-status.is-visible .ep-business-status__line {
	transform: scaleX(1);
}

.ep-business-status__line--top {
	margin-bottom: 19px;
}

.ep-business-status__line--bottom {
	margin-top: 19px;
}

.ep-business-status p {
	margin: 0;
	color: inherit;
	font-size: 0.69rem;
	line-height: 1.65;
	text-align: center;
}

.ep-reveal-ready:not([data-ep-reveal="lines"]) {
	opacity: 0;
	transition:
		opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--ep-reveal-delay, 0ms),
		transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--ep-reveal-delay, 0ms);
	will-change: opacity, transform;
}

.ep-reveal-ready[data-ep-reveal="left"] {
	transform: translate3d(-58px, 0, 0);
}

.ep-reveal-ready[data-ep-reveal="right"] {
	transform: translate3d(58px, 0, 0);
}

.ep-reveal-ready[data-ep-reveal="up"] {
	transform: translate3d(0, 42px, 0);
}

.ep-reveal-ready.is-visible:not([data-ep-reveal="lines"]) {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

[data-ep-delay="1"] {
	--ep-reveal-delay: 90ms;
}

[data-ep-delay="2"] {
	--ep-reveal-delay: 180ms;
}

[data-ep-delay="3"] {
	--ep-reveal-delay: 270ms;
}

@media (max-width: 1080px) {
	.ep-home-hero__grid,
	.ep-home-standards__grid {
		grid-template-columns: 1fr;
	}

	.ep-home-hero__copy {
		max-width: 820px;
	}

	.ep-home-hero__visual {
		width: min(100%, 680px);
		margin-left: auto;
	}

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

	.ep-home-standards__intro {
		max-width: 760px;
	}

	.ep-home-standard-cards {
		max-width: 920px;
	}
}

@media (max-width: 820px) {
	.ep-home-proof__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 12px;
	}

	.ep-home-proof__grid > div:nth-child(2) {
		border-right: 0;
	}

	.ep-home-proof__grid > div:nth-child(3) {
		padding-left: 0;
	}

	.ep-home-standard-cards {
		grid-template-columns: 1fr;
	}

	.ep-home-faq__grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.ep-home-faq__heading {
		position: static;
	}
}

@media (max-width: 767px) {
	.ep-home-shell,
	.ep-business-status__inner,
	.ep-business-status__line {
		width: min(100% - 28px, 1240px);
	}

	.ep-home-hero {
		min-height: 0;
		padding: 70px 0 138px;
	}

	.ep-home-hero__grid {
		gap: 42px;
	}

	.ep-home h1 {
		font-size: clamp(2.75rem, 13vw, 4.35rem);
	}

	.ep-home h2 {
		font-size: clamp(2.15rem, 10vw, 3.4rem);
	}

	.ep-home-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ep-home-button {
		width: 100%;
	}

	.ep-home-search {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.ep-home-search button {
		min-height: 46px;
	}

	.ep-home-hero__visual {
		min-height: 415px;
	}

	.ep-home-record {
		width: calc(100% - 10px);
	}

	.ep-home-record header,
	.ep-home-record dl,
	.ep-home-record footer {
		padding-right: 17px;
		padding-left: 17px;
	}

	.ep-home-record dl > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.ep-home-proof {
		padding: 20px 0 25px;
	}

	.ep-home-proof__grid > div {
		align-items: flex-start;
		padding: 8px 13px;
	}

	.ep-home-proof__grid > div:first-child,
	.ep-home-proof__grid > div:nth-child(3) {
		padding-left: 0;
	}

	.ep-home-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.ep-home-catalog {
		padding: 82px 0;
	}

	.ep-home-product__body {
		min-height: 194px;
		padding: 18px;
	}

	.ep-home-standards {
		padding: 126px 0 138px;
		clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
	}

	.ep-home-standard-cards article {
		min-height: 0;
		display: block;
		padding: 25px 23px;
	}

	.ep-home-standard-cards article:hover {
		transform: none;
	}

	.ep-home-standard-cards article > span {
		margin-bottom: 20px;
	}

	.ep-home-standard-cards h3 {
		margin-bottom: 10px;
	}

	.ep-home-faq {
		padding: 82px 0 96px;
	}

	.ep-home-faq summary {
		min-height: 76px;
		font-size: 1.03rem;
	}

	.ep-home-faq details > p {
		padding-right: 10px;
		padding-left: 0;
	}

	.ep-home-cta {
		padding: 92px 0;
	}

	.ep-business-status p {
		font-size: 0.67rem;
		text-align: left;
	}
}

@media (max-width: 520px) {
	.ep-home-proof__grid,
	.ep-home-products {
		grid-template-columns: 1fr;
	}

	.ep-home-proof__grid > div {
		padding: 10px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	}

	.ep-home-proof__grid > div:last-child {
		border-bottom: 0;
	}

	.ep-home-product__image {
		aspect-ratio: 1 / 0.82;
	}

	.ep-home-catalog-empty {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ep-home *,
	.ep-business-status * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.ep-reveal-ready,
	.ep-reveal-ready.is-visible {
		opacity: 1 !important;
		transform: none !important;
	}

	.ep-home-standard-cards article:hover {
		transform: none;
	}

	.ep-business-status__line {
		transform: scaleX(1);
	}
}
