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

html {
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0;
	padding: 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #101114;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
	margin: 0;
	padding: 0
}

ul,
ol {
	list-style: none
}

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

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer
}

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

::selection {
	background: #0b5cff;
	color: #fff
}

body {
	font-size: 16px;
	color: #101114
}

.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px
}

.section {
	padding: 96px 0
}

@media(max-width: 820px) {
	.section {
		padding: 56px 0
	}
}

.section--soft {
	background-color: #fafafa;
	border-top: 1px solid #e8e8ea;
	border-bottom: 1px solid #e8e8ea
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6a6d73;
	padding: 6px 10px;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	background-color: #fff
}

.eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #0b5cff
}

.section-title {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #101114;
	margin-top: 16px
}

.section-sub {
	margin-top: 16px;
	max-width: 640px;
	font-size: 17px;
	color: #6a6d73;
	line-height: 1.6
}

.section-head {
	text-align: left;
	margin-bottom: 56px
}

.section-head.section-head--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto
}

.section-head.section-head--center .section-sub {
	margin-left: auto;
	margin-right: auto
}

.divider {
	height: 1px;
	background-color: #e8e8ea;
	border: 0
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background-color: #fff;
	color: #101114;
	cursor: pointer;
	transition: background-color 200ms cubic-bezier(0.2, 0.7, 0.2, 1), color 200ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 200ms cubic-bezier(0.2, 0.7, 0.2, 1);
	white-space: nowrap
}

.btn:hover {
	border-color: #d9d9dc;
	background-color: #fafafa
}

.btn:focus-visible {
	outline: 2px solid #0b5cff;
	outline-offset: 2px
}

.btn--primary {
	background-color: #0f1012;
	border-color: #0f1012;
	color: #fff
}

.btn--primary:hover {
	background-color: #000;
	border-color: #000
}

.btn--accent {
	background-color: #0b5cff;
	border-color: #0b5cff;
	color: #fff
}

.btn--accent:hover {
	background-color: #0945c4;
	border-color: #0945c4
}

.btn--ghost {
	background-color: rgba(0, 0, 0, 0);
	border-color: #e8e8ea
}

.btn--ghost:hover {
	background-color: #fafafa
}

.btn--sm {
	padding: 9px 14px;
	font-size: 14px
}

.btn--lg {
	padding: 14px 22px;
	font-size: 16px
}

.btn--block {
	width: 100%
}

.btn .arrow {
	display: inline-block;
	transition: transform 120ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.btn:hover .arrow {
	transform: translateX(2px)
}

.text-muted {
	color: #6a6d73
}

.text-strong {
	color: #101114;
	font-weight: 600
}

.flex {
	display: flex
}

.items-center {
	align-items: center
}

.gap-2 {
	gap: 8px
}

.gap-3 {
	gap: 12px
}

.gap-4 {
	gap: 16px
}

.mt-2 {
	margin-top: 8px
}

.mt-4 {
	margin-top: 16px
}

.mt-6 {
	margin-top: 24px
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	color: #6a6d73;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 999px
}

[data-reveal] {
	opacity: 1
}

.appbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: hsla(0, 0%, 100%, .95);
	backdrop-filter: saturate(160%) blur(8px);
	-webkit-backdrop-filter: saturate(160%) blur(8px);
	border-bottom: 1px solid #e8e8ea
}

.appbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 24px
}

.appbar__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #101114;
	font-weight: 700;
	letter-spacing: -0.01em;
	flex-shrink: 0
}

.appbar__logo {
	display: block;
	height: 28px;
	width: auto;
	filter: invert(1)
}

.appbar__nav {
	display: flex;
	align-items: center;
	gap: 32px
}

.appbar__nav a:not(.btn) {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: #6a6d73;
	padding: 6px 0;
	transition: color 120ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.appbar__nav a:not(.btn):hover {
	color: #101114
}

.appbar__nav a:not(.btn)[aria-current=page] {
	color: #101114;
	font-weight: 600
}

.appbar__nav a:not(.btn)[aria-current=page]::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1.5px;
	background: #0b5cff
}

.appbar__nav .appbar__nav-cta {
	display: none
}

.appbar__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0
}

.appbar__menu-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #e8e8ea;
	border-radius: 3px;
	cursor: pointer;
	color: #101114;
	background: rgba(0, 0, 0, 0);
	flex-shrink: 0
}

.appbar__menu-btn span {
	display: block;
	position: relative;
	width: 18px;
	height: 1.5px;
	background: #101114;
	transition: background 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.appbar__menu-btn span::before,
.appbar__menu-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: #101114;
	transition: top 200ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.appbar__menu-btn span::before {
	top: -6px
}

.appbar__menu-btn span::after {
	top: 6px
}

@media(max-width: 820px) {
	.appbar__inner {
		flex-wrap: wrap;
		height: auto;
		min-height: 64px;
		gap: 0;
		padding-top: 0;
		padding-bottom: 0
	}

	.appbar__brand {
		order: 1
	}

	.appbar__actions {
		order: 2;
		margin-left: auto;
		height: 64px;
		align-items: center
	}

	.appbar__nav {
		order: 3
	}

	.appbar__nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0;
		padding: 0 0 24px;
		border-top: 1px solid #e8e8ea
	}

	.appbar__nav a:not(.btn) {
		display: block;
		padding: 14px 0;
		font-size: 16px;
		font-weight: 500;
		color: #101114;
		border-bottom: 1px solid #e8e8ea
	}

	.appbar__nav a:not(.btn):last-of-type {
		border-bottom: none
	}

	.appbar__nav a:not(.btn):hover {
		color: #0b5cff
	}

	.appbar__nav a:not(.btn)[aria-current=page] {
		color: #0b5cff;
		font-weight: 600
	}

	.appbar__nav a:not(.btn)[aria-current=page]::after {
		display: none
	}

	.appbar__nav .appbar__nav-cta {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-top: 20px
	}

	.appbar__cta-desktop {
		display: none
	}

	.appbar__menu-btn {
		display: inline-flex
	}

	.appbar--open .appbar__nav {
		display: flex
	}

	.appbar--open .appbar__menu-btn span {
		background: rgba(0, 0, 0, 0)
	}

	.appbar--open .appbar__menu-btn span::before {
		top: 0;
		transform: rotate(45deg)
	}

	.appbar--open .appbar__menu-btn span::after {
		top: 0;
		transform: rotate(-45deg)
	}
}

.hero {
	position: relative;
	padding: 96px 0 72px;
	border-bottom: 1px solid #e8e8ea;
	overflow: hidden
}

@media(max-width: 820px) {
	.hero {
		padding: 56px 0 40px
	}
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 72px;
	align-items: center
}

@media(max-width: 1024px) {
	.hero__grid {
		grid-template-columns: 1fr;
		gap: 56px
	}
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden
}

.hero__fx-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: .7
}

.hero__fx {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 11px;
	font-size: 12px;
	font-weight: 500;
	color: #6a6d73;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	white-space: nowrap;
	opacity: 0;
	animation: hero-fx-pop 10s ease-in-out infinite;
	will-change: transform, opacity
}

.hero__fx svg {
	width: 12px;
	height: 12px;
	flex-shrink: 0
}

.hero__fx--accent {
	color: #0b5cff;
	border-color: #0b5cff
}

.hero__fx--mono {
	font-family: "SF Mono", Menlo, Monaco, Consolas, ui-monospace, monospace;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #101114;
	background: #fafafa;
	border-color: #d9d9dc
}

.hero__fx--ok {
	color: #1f9d55;
	border-color: rgba(31, 157, 85, .35);
	background: rgba(31, 157, 85, .06);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 11px
}

.hero__fx--ok svg {
	width: 11px;
	height: 11px;
	color: #1f9d55;
	flex-shrink: 0
}

@keyframes hero-fx-pop {

	0%,
	8% {
		opacity: 0;
		transform: translateY(6px)
	}

	18%,
	48% {
		opacity: 1;
		transform: translateY(0)
	}

	58%,
	100% {
		opacity: 0;
		transform: translateY(-6px)
	}
}

.hero__fx--1 {
	top: 6%;
	left: 4%;
	animation-delay: 0s
}

.hero__fx--2 {
	top: 18%;
	left: 36%;
	animation-delay: 1s
}

.hero__fx--3 {
	top: 62%;
	left: 3%;
	animation-delay: 2s
}

.hero__fx--4 {
	top: 8%;
	right: 24%;
	animation-delay: 3s
}

.hero__fx--5 {
	bottom: 7%;
	left: 16%;
	animation-delay: 4s
}

.hero__fx--6 {
	bottom: 28%;
	right: 3%;
	animation-delay: 5s
}

.hero__fx--7 {
	top: 4%;
	right: 3%;
	animation-delay: 6s
}

.hero__fx--8 {
	bottom: 4%;
	right: 28%;
	animation-delay: 7s
}

.hero__fx--9 {
	top: 46%;
	left: 2%;
	animation-delay: 8s
}

.hero__fx--10 {
	bottom: 8%;
	right: 4%;
	animation-delay: 9s
}

@media(max-width: 820px) {

	.hero__fx--2,
	.hero__fx--4,
	.hero__fx--8 {
		display: none
	}
}

@media(max-width: 560px) {

	.hero__fx--3,
	.hero__fx--6,
	.hero__fx--9 {
		display: none
	}
}

.hero__copy {
	max-width: 620px
}

.hero__top-row {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px
}

.hero__live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #1f9d55;
	background: rgba(31, 157, 85, .08);
	border: 1px solid rgba(31, 157, 85, .3);
	border-radius: 999px
}

.hero__live-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #1f9d55;
	animation: hero-live-pulse 1.6s ease-in-out infinite
}

@keyframes hero-live-pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .45;
		transform: scale(0.85)
	}
}

@media(prefers-reduced-motion: reduce) {
	.hero__live-dot {
		animation: none
	}
}

.hero__console {
	margin: 24px 0 32px;
	max-width: 480px;
	background: #0a1525;
	border: 1px solid #1a2a44;
	border-radius: 5px;
	font-family: "SF Mono", Menlo, Monaco, Consolas, ui-monospace, monospace;
	overflow: hidden
}

.hero__console-head {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 9px 14px;
	background: #0d1c30;
	border-bottom: 1px solid #1a2a44
}

.hero__console-counter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #1f9d55;
	background: rgba(31, 157, 85, .1);
	border: 1px solid rgba(31, 157, 85, .35);
	border-radius: 3px
}

.hero__console-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1f9d55;
	animation: hero-live-pulse 1.6s ease-in-out infinite
}

.hero__console-light {
	width: 9px;
	height: 9px;
	border-radius: 50%
}

.hero__console-light--r {
	background: #ff5f56
}

.hero__console-light--y {
	background: #ffbd2e
}

.hero__console-light--g {
	background: #27c93f
}

.hero__console-title {
	margin-left: 10px;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: hsla(0, 0%, 100%, .55)
}

.hero__console-stage {
	position: relative;
	padding: 14px 16px 16px;
	min-height: 168px;
	color: #e1e9f5;
	font-size: 13px;
	line-height: 1.4
}

.hero__console-session {
	position: absolute;
	inset: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	opacity: 0
}

.hero__console-session:nth-child(1) {
	animation: hero-session-1 20s ease-in-out infinite
}

.hero__console-session:nth-child(2) {
	animation: hero-session-2 20s ease-in-out infinite
}

.hero__console-session:nth-child(3) {
	animation: hero-session-3 20s ease-in-out infinite
}

.hero__console-session:nth-child(4) {
	animation: hero-session-4 20s ease-in-out infinite
}

@keyframes hero-session-1 {

	0%,
	22% {
		opacity: 1
	}

	26%,
	96% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes hero-session-2 {

	0%,
	22% {
		opacity: 0
	}

	26%,
	47% {
		opacity: 1
	}

	51%,
	100% {
		opacity: 0
	}
}

@keyframes hero-session-3 {

	0%,
	47% {
		opacity: 0
	}

	51%,
	72% {
		opacity: 1
	}

	76%,
	100% {
		opacity: 0
	}
}

@keyframes hero-session-4 {

	0%,
	72% {
		opacity: 0
	}

	76%,
	96% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@media(prefers-reduced-motion: reduce) {
	.hero__console-session {
		animation: none !important;
		opacity: 0
	}

	.hero__console-session:first-child {
		opacity: 1
	}
}

.hero__console-id {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: hsla(0, 0%, 100%, .45);
	margin-bottom: 2px
}

.hero__console-row {
	display: flex;
	align-items: center;
	gap: 10px
}

.hero__console-led {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	background: hsla(0, 0%, 100%, .18)
}

.hero__console-led--ok {
	background: #1f9d55
}

.hero__console-led--pulse {
	background: #0b5cff;
	animation: hero-led-pulse 1.4s ease-in-out infinite
}

@keyframes hero-led-pulse {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: .35
	}
}

@media(prefers-reduced-motion: reduce) {
	.hero__console-led--pulse {
		animation: none
	}
}

.hero__console-label {
	flex: 1;
	color: rgba(225, 233, 245, .62);
	font-size: 12px;
	letter-spacing: .02em
}

.hero__console-value {
	color: #6eb7e6;
	font-weight: 600;
	font-size: 12.5px
}

.hero__console-bar {
	margin-top: 4px;
	height: 4px;
	border-radius: 2px;
	background: hsla(0, 0%, 100%, .08);
	overflow: hidden
}

.hero__console-bar span {
	position: relative;
	display: block;
	height: 100%;
	background: linear-gradient(to right, #0b5cff, #6eb7e6);
	border-radius: 2px
}

.hero__console-bar span::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
	animation: hero-bar-shimmer 1.6s ease-in-out infinite;
	pointer-events: none
}

.hero__console-session:nth-child(1) .hero__console-bar span {
	animation: hero-bar-1 20s linear infinite
}

.hero__console-session:nth-child(2) .hero__console-bar span {
	animation: hero-bar-2 20s linear infinite
}

.hero__console-session:nth-child(3) .hero__console-bar span {
	animation: hero-bar-3 20s linear infinite
}

.hero__console-session:nth-child(4) .hero__console-bar span {
	animation: hero-bar-4 20s linear infinite
}

@keyframes hero-bar-1 {
	0% {
		width: 0
	}

	22% {
		width: 67%
	}

	26% {
		width: 67%
	}

	85%,
	100% {
		width: 0
	}
}

@keyframes hero-bar-2 {

	0%,
	22% {
		width: 0
	}

	47% {
		width: 92%
	}

	51% {
		width: 92%
	}

	92%,
	100% {
		width: 0
	}
}

@keyframes hero-bar-3 {

	0%,
	47% {
		width: 0
	}

	72% {
		width: 34%
	}

	76% {
		width: 34%
	}

	95%,
	100% {
		width: 0
	}
}

@keyframes hero-bar-4 {

	0%,
	72% {
		width: 0
	}

	96% {
		width: 78%
	}

	100% {
		width: 78%
	}
}

@keyframes hero-bar-shimmer {
	0% {
		opacity: 0;
		transform: translateX(-30%)
	}

	40%,
	60% {
		opacity: 1
	}

	100% {
		opacity: 0;
		transform: translateX(60%)
	}
}

@media(prefers-reduced-motion: reduce) {

	.hero__console-bar span,
	.hero__console-bar span::after {
		animation: none !important
	}
}

.hero__session {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	color: #101114;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	z-index: 4;
	pointer-events: none
}

.hero__session-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1f9d55;
	animation: hero-live-pulse 1.6s ease-in-out infinite
}

.hero__session-mono {
	font-family: "SF Mono", Menlo, Monaco, Consolas, ui-monospace, monospace;
	letter-spacing: .04em
}

.hero__session-sep {
	color: #8a8d94
}

.hero__session-id {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-width: 56px;
	height: 1.1em
}

.hero__session-id .hero__session-mono {
	position: absolute;
	inset: 0;
	opacity: 0
}

.hero__session-id .hero__session-mono:nth-child(1) {
	animation: hero-session-1 20s ease-in-out infinite
}

.hero__session-id .hero__session-mono:nth-child(2) {
	animation: hero-session-2 20s ease-in-out infinite
}

.hero__session-id .hero__session-mono:nth-child(3) {
	animation: hero-session-3 20s ease-in-out infinite
}

.hero__session-id .hero__session-mono:nth-child(4) {
	animation: hero-session-4 20s ease-in-out infinite
}

@media(prefers-reduced-motion: reduce) {
	.hero__session-id .hero__session-mono {
		animation: none !important;
		opacity: 0
	}

	.hero__session-id .hero__session-mono:first-child {
		opacity: 1
	}
}

.hero__title {
	font-size: clamp(36px, 5.4vw, 62px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-top: 20px;
	color: #101114
}

.hero__title em {
	font-style: normal;
	color: #0b5cff
}

.hero__sub {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.6;
	color: #6a6d73;
	max-width: 560px
}

.hero__actions {
	display: flex;
	gap: 12px;
	margin-top: 32px;
	flex-wrap: wrap
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 32px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #e8e8ea
}

.hero__meta>div {
	display: flex;
	flex-direction: column;
	gap: 2px
}

.hero__meta>div .num {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #101114
}

.hero__meta>div .label {
	font-size: 13px;
	color: #6a6d73
}

.hero__visual {
	position: relative;
	width: 100%;
	aspect-ratio: 1/.95;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero__canvas {
	position: relative;
	width: 100%;
	height: 100%;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background-color: #fafafa;
	background-image: linear-gradient(to right, #e8e8ea 1px, transparent 1px), linear-gradient(to bottom, #e8e8ea 1px, transparent 1px);
	background-size: 28px 28px;
	overflow: hidden
}

.hero__phone {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 192px;
	aspect-ratio: 9/19.5;
	background: #111213;
	border: 1.5px solid #0a0a0b;
	border-radius: 22px;
	padding: 6px;
	z-index: 3;
	max-height: 94%
}

@media(max-width: 820px) {
	.hero__phone {
		width: 170px
	}
}

@media(max-width: 560px) {
	.hero__phone {
		width: 148px
	}
}

.hero__phone__notch {
	position: absolute;
	top: 11px;
	left: 50%;
	transform: translateX(-50%);
	width: 58px;
	height: 14px;
	background: #000;
	border-radius: 999px;
	z-index: 2
}

.hero__phone__screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	background: #000;
	overflow: hidden
}

.hero__phone__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: hero-phone-slide 18s ease infinite
}

@keyframes hero-phone-slide {
	0% {
		opacity: 0
	}

	3% {
		opacity: 1
	}

	11% {
		opacity: 1
	}

	14% {
		opacity: 0
	}

	100% {
		opacity: 0
	}
}

.hero__phone__slide--1 {
	animation-delay: 0s
}

.hero__phone__slide--2 {
	animation-delay: 2s
}

.hero__phone__slide--3 {
	animation-delay: 4s
}

.hero__phone__slide--4 {
	animation-delay: 6s
}

.hero__phone__slide--5 {
	animation-delay: 8s
}

.hero__phone__slide--6 {
	animation-delay: 10s
}

.hero__phone__slide--7 {
	animation-delay: 12s
}

.hero__phone__slide--8 {
	animation-delay: 14s
}

.hero__phone__slide--9 {
	animation-delay: 16s
}

@media(prefers-reduced-motion: reduce) {
	.hero__phone__slide {
		animation: none
	}

	.hero__phone__slide--1 {
		opacity: 1
	}
}

.hero__ribbon {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	padding: 6px 10px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	font-size: 12px;
	color: #6a6d73
}

.hero__ribbon::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1f9d55
}

.spin__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
	gap: 32px;
	align-items: stretch;
	margin-top: 32px
}

@media(max-width: 1024px) {
	.spin__layout {
		grid-template-columns: 1fr;
		gap: 24px
	}
}

.spin__stage-wrap {
	position: relative;
	padding: 14px
}

.spin__corner {
	position: absolute;
	width: 22px;
	height: 22px;
	border: 2px solid #0b5cff;
	pointer-events: none
}

.spin__corner--tl {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
	border-radius: 5px 0 0 0
}

.spin__corner--tr {
	top: 0;
	right: 0;
	border-left: 0;
	border-bottom: 0;
	border-radius: 0 5px 0 0
}

.spin__corner--bl {
	bottom: 0;
	left: 0;
	border-right: 0;
	border-top: 0;
	border-radius: 0 0 0 5px
}

.spin__corner--br {
	bottom: 0;
	right: 0;
	border-left: 0;
	border-top: 0;
	border-radius: 0 0 5px 0
}

.spin__stage {
	position: relative;
	width: 100%;
	height: 480px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background-color: #fff;
	background-image: linear-gradient(to right, #e8e8ea 1px, transparent 1px), linear-gradient(to bottom, #e8e8ea 1px, transparent 1px);
	background-size: 28px 28px;
	overflow: hidden;
	user-select: none;
	touch-action: none;
	cursor: grab
}

.spin__stage:active {
	cursor: grabbing
}

@media(max-width: 560px) {
	.spin__stage {
		height: 380px
	}
}

.spin__canvas {
	display: block;
	width: 100%;
	height: 100%
}

.spin__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #101114;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 3px;
	pointer-events: none;
	z-index: 2
}

.spin__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #0b5cff
}

.spin__hint {
	position: absolute;
	left: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 500;
	color: #6a6d73;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	pointer-events: none;
	z-index: 2
}

.spin__hint svg {
	width: 14px;
	height: 14px;
	color: #0b5cff
}

.spin__stage::before {
	content: "Loading 3D model…";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: #6a6d73;
	z-index: 1;
	pointer-events: none;
	transition: opacity 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.spin__stage--ready::before,
.spin__stage--error::before {
	opacity: 0
}

.spin__stage--error::after {
	content: "Could not load 3D model. Check your connection and try again.";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	font-size: 13px;
	color: #6a6d73
}

.spin__notes {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-self: stretch;
	justify-content: flex-start
}

.spin__notes-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #8a8d94;
	margin-bottom: 8px
}

.spin__note {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.spin__note:hover {
	border-color: #d9d9dc;
	transform: translateX(3px)
}

.spin__note-num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
	color: #0b5cff;
	background: rgba(11, 92, 255, .1);
	border: 1px solid rgba(11, 92, 255, .25);
	border-radius: 3px
}

.spin__note-title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.spin__note-text {
	margin: 4px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: #6a6d73
}

.spin__note-text strong {
	color: #101114;
	font-weight: 700
}

.spin__notes-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px
}

.spin__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #6a6d73;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px
}

.spin__tag::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #0b5cff
}

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

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

@media(max-width: 560px) {
	.features__grid {
		grid-template-columns: 1fr
	}
}

.feature {
	display: flex;
	flex-direction: column;
	padding: 32px 24px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
	--c: #0b5cff
}

.feature:hover {
	border-color: #d9d9dc;
	transform: translateY(-3px)
}

.feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	color: var(--c);
	background: color-mix(in srgb, var(--c) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--c) 32%, transparent)
}

.feature__icon svg {
	width: 22px;
	height: 22px
}

.feature__title {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.feature__chip {
	align-self: flex-start;
	margin-top: 8px;
	padding: 3px 9px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--c);
	background: color-mix(in srgb, var(--c) 10%, transparent);
	border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
	border-radius: 5px
}

.feature__text {
	margin-top: 12px;
	font-size: 15px;
	color: #6a6d73;
	line-height: 1.65
}

.step__visual--install .sv-phone {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.step__visual--install .sv-phone {
	width: 78px;
	height: 110px;
	padding: 4px;
	border: 1px solid #d9d9dc;
	border-radius: 3px;
	background: #fff
}

.sv-phone__notch {
	position: absolute;
	top: 3px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 3px;
	border-radius: 999px;
	background: #101114;
	opacity: .85;
	z-index: 2
}

.sv-phone__screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background: #fafafa;
	overflow: hidden
}

.sv-stage {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 8px 6px;
	opacity: 0
}

.sv-stage--scan {
	animation: sv-stage-scan 4s ease infinite
}

.sv-stage--bar {
	animation: sv-stage-bar 4s ease infinite
}

.sv-stage--app {
	animation: sv-stage-app 4s ease infinite
}

@keyframes sv-stage-scan {

	0%,
	42% {
		opacity: 1
	}

	48%,
	100% {
		opacity: 0
	}
}

@keyframes sv-stage-bar {

	0%,
	48% {
		opacity: 0
	}

	54%,
	70% {
		opacity: 1
	}

	76%,
	100% {
		opacity: 0
	}
}

@keyframes sv-stage-app {

	0%,
	76% {
		opacity: 0;
		transform: scale(0.7)
	}

	82% {
		opacity: 1;
		transform: scale(1.1)
	}

	88%,
	96% {
		opacity: 1;
		transform: scale(1)
	}

	100% {
		opacity: 0;
		transform: scale(0.9)
	}
}

.sv-scan-frame {
	position: relative;
	width: 52px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center
}

.sv-scan-dongle {
	position: relative;
	width: 36px;
	height: 48px;
	background: #0b5cff;
	border: 1px solid #0945c4;
	border-radius: 3px;
	padding: 3px;
	display: flex;
	align-items: center;
	justify-content: center
}

.sv-scan-dongle__head {
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 14px;
	height: 6px;
	background: #0f1012;
	border-radius: 1px 1px 0 0
}

.sv-scan-dongle__body {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 2px;
	padding: 3px
}

.sv-mini-qr {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	gap: 1px
}

.sv-mini-qr i {
	background: #101114;
	border-radius: .5px
}

.sv-mini-qr i:nth-child(2),
.sv-mini-qr i:nth-child(4),
.sv-mini-qr i:nth-child(7),
.sv-mini-qr i:nth-child(10),
.sv-mini-qr i:nth-child(13),
.sv-mini-qr i:nth-child(14),
.sv-mini-qr i:nth-child(16),
.sv-mini-qr i:nth-child(19),
.sv-mini-qr i:nth-child(22),
.sv-mini-qr i:nth-child(24) {
	background: rgba(0, 0, 0, 0)
}

.sv-bracket {
	position: absolute;
	width: 9px;
	height: 9px;
	border: 1.5px solid #0b5cff;
	opacity: .95
}

.sv-bracket--tl {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0
}

.sv-bracket--tr {
	top: 0;
	right: 0;
	border-left: 0;
	border-bottom: 0
}

.sv-bracket--bl {
	bottom: 0;
	left: 0;
	border-right: 0;
	border-top: 0
}

.sv-bracket--br {
	bottom: 0;
	right: 0;
	border-left: 0;
	border-top: 0
}

.sv-scanline {
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	height: 1.5px;
	background: #0b5cff;
	opacity: 0;
	animation: sv-scanline 4s ease-in-out infinite
}

@keyframes sv-scanline {

	0%,
	4% {
		top: 4px;
		opacity: 0
	}

	10% {
		opacity: .95
	}

	32% {
		top: calc(100% - 5px);
		opacity: .95
	}

	40%,
	100% {
		top: calc(100% - 5px);
		opacity: 0
	}
}

.sv-bar {
	width: 54px;
	height: 4px;
	border-radius: 2px;
	background: #e8e8ea;
	overflow: hidden
}

.sv-bar span {
	display: block;
	height: 100%;
	width: 0;
	background: #0b5cff;
	animation: sv-bar-fill 4s ease infinite
}

@keyframes sv-bar-fill {

	0%,
	30% {
		width: 0
	}

	60% {
		width: 100%
	}

	73%,
	100% {
		width: 100%
	}
}

.sv-bar__label {
	font-size: 7px;
	color: #6a6d73
}

.sv-icon {
	width: 34px;
	height: 34px;
	border-radius: 5px;
	background: #0b5cff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em
}

.sv-icon__label {
	font-size: 7px;
	color: #1f9d55;
	font-weight: 600
}

@media(prefers-reduced-motion: reduce) {

	.step__visual--install *,
	.step__visual--install *::before,
	.step__visual--install *::after {
		animation: none !important;
		transition: none !important
	}

	.step__visual--install .sv-stage--scan,
	.step__visual--install .sv-stage--bar {
		opacity: 0
	}

	.step__visual--install .sv-stage--app {
		opacity: 1;
		transform: scale(1)
	}
}

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

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

@media(max-width: 560px) {
	.six-grid {
		grid-template-columns: 1fr
	}
}

.six-card {
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.six-card:hover {
	border-color: #d9d9dc;
	transform: translateY(-2px)
}

.six-card__visual {
	position: relative;
	height: 220px;
	background-color: #fafafa;
	background-image: radial-gradient(#e8e8ea 1px, transparent 1px);
	background-size: 14px 14px;
	overflow: hidden;
	border-bottom: 1px solid #e8e8ea
}

.six-card__body {
	padding: 24px 24px 32px;
	display: flex;
	flex-direction: column;
	flex: 1
}

.six-card__num {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	color: #0b5cff;
	text-transform: uppercase
}

.six-card__num::before {
	content: "";
	width: 18px;
	height: 1.5px;
	background: #0b5cff
}

.six-card__title {
	margin-top: 12px;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.six-card__text {
	margin-top: 12px;
	font-size: 15px;
	color: #6a6d73;
	line-height: 1.6
}

.six-order {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px
}

.six-order__product {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain
}

.six-order__tag {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	color: #0b5cff;
	background: #fff;
	border: 1px solid #0b5cff;
	border-radius: 999px
}

.six-order__tag svg {
	width: 12px;
	height: 12px
}

.six-card__visual.step__visual--install .sv-phone {
	transform: translate(-50%, -50%) scale(1.25)
}

.six-plug {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 0
}

.six-plug__port {
	position: relative;
	width: 64px;
	height: 64px;
	border: 1px solid #d9d9dc;
	border-radius: 5px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 1;
	animation: six-plug-port 4s ease-in-out infinite
}

.six-plug__port::before {
	content: "OBD-II";
	position: absolute;
	top: -18px;
	left: 0;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .12em;
	color: #6a6d73;
	text-transform: uppercase
}

.six-plug__slot {
	position: relative;
	width: 32px;
	height: 28px;
	background: #0f1012;
	border-radius: 2px
}

.six-plug__slot::before,
.six-plug__slot::after {
	content: "";
	position: absolute;
	left: 3px;
	right: 3px;
	height: 1px;
	background: hsla(0, 0%, 100%, .22)
}

.six-plug__slot::before {
	top: 8px
}

.six-plug__slot::after {
	top: 13px
}

.six-plug__dongle {
	position: relative;
	width: 108px;
	height: 60px;
	background: #0b5cff;
	border: 1px solid #0945c4;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .16em;
	flex-shrink: 0;
	will-change: transform;
	animation: six-plug-slide 4s ease-in-out infinite
}

.six-plug__connector {
	position: absolute;
	left: -26px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 30px;
	background: #0f1012;
	border-radius: 2px 0 0 2px
}

.six-plug__led {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: hsla(0, 0%, 100%, .35);
	animation: six-plug-led 4s ease-in-out infinite
}

@keyframes six-plug-slide {

	0%,
	8% {
		transform: translateX(52px)
	}

	30%,
	72% {
		transform: translateX(0)
	}

	94%,
	100% {
		transform: translateX(52px)
	}
}

@keyframes six-plug-led {

	0%,
	28% {
		background: hsla(0, 0%, 100%, .35)
	}

	36%,
	70% {
		background: #57f2a2
	}

	80%,
	100% {
		background: hsla(0, 0%, 100%, .35)
	}
}

@keyframes six-plug-port {

	0%,
	28% {
		border-color: #d9d9dc
	}

	38%,
	70% {
		border-color: #1f9d55
	}

	80%,
	100% {
		border-color: #d9d9dc
	}
}

@media(prefers-reduced-motion: reduce) {

	.six-plug__port,
	.six-plug__dongle,
	.six-plug__led {
		animation: none
	}

	.six-plug__dongle {
		transform: translateX(0)
	}

	.six-plug__led {
		background: #57f2a2
	}

	.six-plug__port {
		border-color: #1f9d55
	}
}

.six-phone {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	aspect-ratio: 9/19.5;
	background: #111213;
	border: 1.5px solid #0a0a0b;
	border-radius: 14px;
	padding: 4px;
	max-height: 86%
}

.six-phone__notch {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 9px;
	background: #000;
	border-radius: 999px;
	z-index: 2
}

.six-phone__screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: #000;
	overflow: hidden
}

.six-phone__screen img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.six-drive {
	position: absolute;
	inset: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center
}

.six-drive__car {
	width: 240px;
	max-width: 92%;
	height: auto;
	color: #101114;
	animation: six-drive-move 7s ease-in-out infinite
}

@keyframes six-drive-move {

	0%,
	50% {
		transform: translateX(0);
		opacity: 1
	}

	80% {
		transform: translateX(180%);
		opacity: 1
	}

	83% {
		transform: translateX(180%);
		opacity: 0
	}

	85% {
		transform: translateX(0);
		opacity: 0
	}

	93%,
	100% {
		transform: translateX(0);
		opacity: 1
	}
}

.six-drive__hood {
	transform-origin: 172px 40px;
	animation: six-drive-hood 7s ease-in-out infinite
}

@keyframes six-drive-hood {

	0%,
	22% {
		transform: rotate(-48deg)
	}

	40%,
	78% {
		transform: rotate(0deg)
	}

	84%,
	100% {
		transform: rotate(-48deg)
	}
}

.six-drive__wheel {
	transform-box: fill-box;
	transform-origin: center;
	animation: six-drive-wheel 7s ease-in-out infinite
}

@keyframes six-drive-wheel {

	0%,
	50% {
		transform: rotate(0deg)
	}

	80% {
		transform: rotate(1080deg)
	}

	85%,
	100% {
		transform: rotate(0deg)
	}
}

.six-drive__lines {
	position: absolute;
	top: 48%;
	left: 16%;
	display: flex;
	flex-direction: column;
	gap: 7px;
	opacity: 0;
	pointer-events: none;
	animation: six-drive-lines 7s ease-in-out infinite
}

.six-drive__lines span {
	display: block;
	height: 2px;
	background: #0b5cff;
	border-radius: 1px
}

.six-drive__lines span:nth-child(1) {
	width: 34px
}

.six-drive__lines span:nth-child(2) {
	width: 22px
}

.six-drive__lines span:nth-child(3) {
	width: 28px
}

@keyframes six-drive-lines {

	0%,
	52% {
		opacity: 0;
		transform: translateX(0)
	}

	60% {
		opacity: .9
	}

	78% {
		opacity: .9;
		transform: translateX(-18px)
	}

	84%,
	100% {
		opacity: 0;
		transform: translateX(-18px)
	}
}

.six-drive__label {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	color: #101114;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	animation: six-drive-label 7s ease-in-out infinite
}

@keyframes six-drive-label {

	0%,
	30% {
		opacity: 0
	}

	45%,
	78% {
		opacity: 1
	}

	84%,
	100% {
		opacity: 0
	}
}

@media(prefers-reduced-motion: reduce) {

	.six-drive__car,
	.six-drive__hood,
	.six-drive__wheel,
	.six-drive__lines,
	.six-drive__label {
		animation: none
	}

	.six-drive__car {
		transform: translateX(0);
		opacity: 1
	}

	.six-drive__hood {
		transform: rotate(0deg)
	}

	.six-drive__wheel {
		transform: rotate(0deg)
	}

	.six-drive__lines {
		display: none
	}

	.six-drive__label {
		opacity: 1
	}
}

.compat__stats {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 32px;
	flex-wrap: wrap
}

.compat__stat {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 18px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px
}

.compat__stat-num {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #101114
}

.compat__stat-label {
	font-size: 13px;
	color: #6a6d73;
	text-transform: lowercase;
	letter-spacing: .01em
}

.compat__search {
	max-width: 560px;
	margin: 0 auto 40px
}

.compat__search-box {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	background: #fff;
	border: 1px solid #d9d9dc;
	border-radius: 5px;
	transition: border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat__search-box:focus-within {
	border-color: #0b5cff;
	background: #fff
}

.compat__search-icon {
	width: 20px;
	height: 20px;
	color: #6a6d73;
	flex-shrink: 0
}

.compat__search-input {
	flex: 1;
	font: inherit;
	font-size: 15px;
	color: #101114;
	background: rgba(0, 0, 0, 0);
	border: 0;
	outline: none;
	padding: 0
}

.compat__search-input::placeholder {
	color: #8a8d94
}

.compat__search-input::-ms-clear {
	display: none
}

.compat__search-hint {
	margin: 12px 0 0;
	font-size: 13px;
	color: #6a6d73;
	text-align: center;
	min-height: 1.2em;
	transition: color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat__search-hint.is-success {
	color: #1f9d55;
	font-weight: 600
}

.compat__search-hint.is-empty {
	color: #6a6d73
}

.compat__quick {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 12px
}

.compat__quick-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #8a8d94;
	margin-right: 4px
}

.compat__quick-chip {
	padding: 5px 12px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	color: #101114;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	cursor: pointer;
	transition: border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1), color 160ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat__quick-chip:hover {
	border-color: #0b5cff;
	color: #0b5cff
}

.compat__quick-chip.is-active {
	background: #0b5cff;
	color: #fff;
	border-color: #0b5cff
}

.compat-featured.is-match,
.compat-mini.is-match {
	border-color: #0b5cff;
	background: rgba(11, 92, 255, .03)
}

.compat-featured.is-dimmed,
.compat-mini.is-dimmed {
	opacity: .35;
	transition: opacity 180ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat-brands li.is-hit {
	background: #0b5cff;
	border-color: #0b5cff;
	color: #fff;
	font-weight: 600
}

.compat-featured {
	position: relative
}

.compat-featured__badge {
	position: absolute;
	top: -10px;
	left: 32px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: #0b5cff;
	border-radius: 3px
}

@media(max-width: 820px) {
	.compat-featured__badge {
		left: 20px
	}
}

.compat__help {
	margin-top: 40px;
	padding: 24px 32px;
	background: #fafafa;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap
}

@media(max-width: 820px) {
	.compat__help {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px
	}
}

.compat__help .btn {
	flex-shrink: 0
}

.compat__help-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.compat__help-text {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.55;
	color: #6a6d73;
	max-width: 520px
}

.compat__banner {
	margin-bottom: 40px;
	padding: 32px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center
}

.compat__banner img {
	max-width: 100%;
	height: auto;
	max-height: 240px;
	object-fit: contain
}

@media(max-width: 560px) {
	.compat__banner {
		padding: 20px
	}

	.compat__banner img {
		max-height: 160px
	}
}

.compat-brands {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0
}

.compat-brands li {
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 500;
	color: #101114;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	white-space: nowrap;
	transition: border-color 180ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 180ms cubic-bezier(0.2, 0.7, 0.2, 1), color 180ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat-brands li:hover {
	border-color: #0b5cff;
	color: #0b5cff;
	background-color: #fff
}

.compat-brands--small li {
	padding: 4px 10px;
	font-size: 12px
}

.compat-featured {
	display: flex;
	align-items: stretch;
	gap: 32px;
	padding: 32px 40px;
	margin-bottom: 20px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background-color: #fff;
	background-image: radial-gradient(#e8e8ea 1px, transparent 1px);
	background-size: 16px 16px;
	background-position: 100% 0;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat-featured:hover:not(.is-dimmed) {
	border-color: #d9d9dc;
	transform: translateY(-3px)
}

@media(max-width: 820px) {
	.compat-featured {
		flex-direction: column;
		gap: 20px;
		padding: 24px
	}
}

.compat-featured__tag {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 16px;
	padding-right: 32px;
	border-right: 1px solid #e8e8ea;
	min-width: 180px
}

@media(max-width: 820px) {
	.compat-featured__tag {
		padding-right: 0;
		padding-bottom: 20px;
		border-right: 0;
		border-bottom: 1px solid #e8e8ea
	}
}

.compat-featured__letter {
	position: relative;
	width: 76px;
	height: 76px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 46px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #101114;
	background: #fafafa;
	border: 1px solid #d9d9dc;
	border-radius: 5px;
	flex-shrink: 0
}

.compat-featured__letter::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 5px;
	background: #0f1012;
	border-radius: 2px 2px 0 0
}

.compat-featured__meta {
	display: flex;
	flex-direction: column;
	justify-content: center
}

.compat-featured__title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.compat-featured__count {
	margin-top: 8px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #0b5cff;
	background: rgba(11, 92, 255, .08);
	border-radius: 5px;
	align-self: flex-start
}

.compat-featured .compat-brands {
	align-self: center
}

.compat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px
}

@media(max-width: 1024px) {
	.compat-row {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width: 560px) {
	.compat-row {
		grid-template-columns: 1fr
	}
}

.compat-mini {
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.compat-mini:hover:not(.is-dimmed) {
	border-color: #d9d9dc;
	transform: translateY(-3px)
}

.compat-mini__tag {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #e8e8ea
}

.compat-mini__letter {
	position: relative;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #101114;
	background: #fafafa;
	border: 1px solid #d9d9dc;
	border-radius: 3px;
	flex-shrink: 0
}

.compat-mini__letter::before {
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 3px;
	background: #0f1012;
	border-radius: 1.5px 1.5px 0 0
}

.compat-mini__meta {
	display: flex;
	flex-direction: column;
	line-height: 1.15
}

.compat-mini__title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.compat-mini__count {
	margin-top: 3px;
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #0b5cff;
	background: rgba(11, 92, 255, .08);
	border-radius: 5px;
	align-self: flex-start
}

.compat-mini__note {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e8e8ea;
	font-size: 12px;
	color: #6a6d73;
	line-height: 1.5
}

.vehicles__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	padding: 16px;
	margin-top: 32px;
	background: #fafafa;
	border: 1px solid #e8e8ea;
	border-radius: 5px
}

.vehicles__search {
	flex: 1 1 240px;
	min-width: 220px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	transition: border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.vehicles__search:focus-within {
	border-color: #0b5cff
}

.vehicles__search svg {
	width: 16px;
	height: 16px;
	color: #6a6d73;
	flex-shrink: 0
}

.vehicles__search input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	background: rgba(0, 0, 0, 0);
	font: inherit;
	font-size: 14px;
	color: #101114
}

.vehicles__search input::placeholder {
	color: #8a8d94
}

.vehicles__search input::-ms-clear {
	display: none
}

.vehicles__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 9px 36px 9px 14px;
	font: inherit;
	font-size: 14px;
	color: #101114;
	background-color: #fff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='rgb(106,109,115)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 8px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	cursor: pointer;
	min-width: 140px;
	transition: border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.vehicles__select:focus {
	outline: none;
	border-color: #0b5cff
}

.vehicles__select:hover {
	border-color: #d9d9dc
}

.vehicles__clear {
	padding: 9px 16px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #6a6d73;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	cursor: pointer;
	transition: color 160ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.vehicles__clear:hover {
	color: #101114;
	border-color: #d9d9dc
}

.vehicles__count {
	margin-top: 16px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #6a6d73
}

.vehicles__count span {
	color: #101114;
	font-weight: 700
}

.vehicles__tablewrap {
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

.vehicles__table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 14px
}

.vehicles__table thead th {
	padding: 14px 16px;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #6a6d73;
	background: #fafafa;
	border-bottom: 1px solid #e8e8ea;
	white-space: nowrap
}

.vehicles__table tbody td {
	padding: 14px 16px;
	color: #101114;
	border-bottom: 1px solid #e8e8ea;
	vertical-align: middle
}

.vehicles__table tbody tr:last-child td {
	border-bottom: 0
}

.vehicles__table tbody tr {
	transition: background-color 140ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.vehicles__table tbody tr:hover {
	background: #fafafa
}

.vehicles__table tbody td:first-child {
	font-weight: 600
}

.vehicles__dongle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #101114;
	background: #fafafa;
	border: 1px solid #d9d9dc;
	border-radius: 3px
}

.vehicles__diff {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .01em;
	border-radius: 5px;
	white-space: nowrap
}

.vehicles__diff::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0
}

.vehicles__diff--easy {
	color: #16a34a;
	background: rgba(22, 163, 74, .1)
}

.vehicles__diff--medium {
	color: #d97706;
	background: rgba(217, 119, 6, .1)
}

.vehicles__diff--hard {
	color: #dc2626;
	background: rgba(220, 38, 38, .1)
}

.vehicles__empty {
	margin-top: 16px;
	padding: 32px;
	background: #fafafa;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	color: #6a6d73
}

.vehicles__empty strong {
	display: block;
	font-size: 16px;
	color: #101114;
	margin-bottom: 4px
}

.vehicles__empty a {
	color: #0b5cff;
	font-weight: 600
}

.vehicles__empty a:hover {
	text-decoration: underline
}

.kits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px
}

@media(max-width: 820px) {
	.kits__grid {
		grid-template-columns: 1fr
	}
}

.kit {
	position: relative;
	padding: 40px 32px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px
}

.kit--featured {
	border-color: #101114
}

.kit--featured .kit__badge {
	position: absolute;
	top: -10px;
	left: 24px;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 4px 8px;
	background: #101114;
	color: #fff;
	border-radius: 3px
}

.kit__name {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #101114
}

.kit__desc {
	font-size: 15px;
	color: #6a6d73;
	line-height: 1.5
}

.kit__features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid #e8e8ea
}

.kit__features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #101114
}

.kit__features .check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #d9d9dc;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1f9d55;
	background: #fafafa;
	margin-top: 1px
}

.kit__features .check svg {
	width: 12px;
	height: 12px
}

.kit__cta {
	margin-top: auto
}

.kit__meta {
	display: flex;
	gap: 24px;
	padding-top: 20px;
	border-top: 1px solid #e8e8ea;
	font-size: 13px;
	color: #6a6d73
}

.kit__meta strong {
	display: block;
	color: #101114;
	font-size: 15px;
	margin-bottom: 2px
}

.reviews__trust {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding: 6px 14px;
	background: #fafafa;
	border: 1px solid #e8e8ea;
	border-radius: 999px;
	font-size: 13px;
	color: #6a6d73
}

.reviews__trust strong {
	color: #101114;
	font-weight: 700
}

.reviews__trust-stars {
	display: inline-flex;
	gap: 2px;
	color: #f5b301
}

.reviews__trust-stars svg {
	width: 14px;
	height: 14px;
	fill: currentColor
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px
}

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

@media(max-width: 560px) {
	.reviews__grid {
		grid-template-columns: 1fr
	}
}

.review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 32px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
	overflow: hidden
}

.review:hover {
	border-color: #d9d9dc;
	transform: translateY(-3px)
}

.review__quote-mark {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	color: #0b5cff;
	opacity: .14;
	pointer-events: none
}

.review__stars {
	display: inline-flex;
	gap: 3px;
	color: #f5b301
}

.review__stars svg {
	width: 18px;
	height: 18px;
	fill: currentColor
}

.review__quote {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	font-weight: 500;
	color: #101114;
	flex: 1
}

.review__quote::before {
	content: "“"
}

.review__quote::after {
	content: "”"
}

.review__meta {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #e8e8ea;
	display: flex;
	align-items: center;
	gap: 12px
}

.review__avatar {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #0b5cff;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em
}

.review__person {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0
}

.review__name {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.review__sub {
	font-size: 12px;
	line-height: 1.4;
	color: #6a6d73;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.review__time {
	flex-shrink: 0;
	align-self: flex-start;
	padding-top: 2px;
	font-size: 11px;
	font-weight: 500;
	color: #8a8d94;
	letter-spacing: .01em
}

.reviews__cta {
	margin: 32px 0 0;
	text-align: center;
	font-size: 14px;
	color: #6a6d73
}

.reviews__cta a {
	margin-left: 4px;
	color: #0b5cff;
	font-weight: 600
}

.reviews__cta a:hover {
	color: #0945c4;
	text-decoration: underline
}

.faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

@media(max-width: 820px) {
	.faq__grid {
		grid-template-columns: 1fr
	}
}

.faq__item {
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
	transition: border-color 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.faq__item[open] {
	border-color: #d9d9dc
}

.faq__item:hover {
	border-color: #d9d9dc
}

.faq__summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 24px;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px
}

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

.faq__summary .faq__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #e8e8ea;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #6a6d73;
	font-size: 14px;
	transition: transform 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.faq__summary .faq__icon::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 1.5px;
	background: currentColor
}

.faq__summary .faq__icon::after {
	content: "";
	position: absolute;
	width: 1.5px;
	height: 10px;
	background: currentColor;
	transition: transform 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.faq__summary .faq__icon {
	position: relative
}

.faq__item[open] .faq__icon::after {
	transform: scaleY(0)
}

.faq__body {
	padding: 0 24px 24px;
	font-size: 15px;
	line-height: 1.65;
	color: #6a6d73
}

.dist-intro {
	padding: 72px 0 56px
}

@media(max-width: 820px) {
	.dist-intro {
		padding: 40px 0 32px
	}
}

.dist-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}

@media(max-width: 820px) {
	.dist-intro__grid {
		grid-template-columns: 1fr;
		gap: 16px
	}
}

.dist-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 40px 32px 32px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	color: #101114;
	text-decoration: none;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.dist-card:hover {
	border-color: #d9d9dc;
	transform: translateY(-2px)
}

.dist-card:hover .arrow {
	transform: translateX(3px)
}

.dist-card--accent {
	background: #fafafa
}

.dist-card__num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #0b5cff
}

.dist-card__num::before {
	content: "— "
}

.dist-card__icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #d9d9dc;
	border-radius: 5px;
	color: #101114
}

.dist-card__icon svg {
	width: 24px;
	height: 24px
}

.dist-card--accent .dist-card__icon {
	background: #fff
}

.dist-card__title {
	margin: 0;
	font-size: clamp(24px, 3.2vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #101114
}

.dist-card__title em {
	font-style: normal;
	color: #0b5cff
}

.dist-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #6a6d73
}

.dist-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #0b5cff
}

.dist-card__cta .arrow {
	transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.dist-stats {
	padding: 32px 0;
	border-top: 1px solid #e8e8ea;
	border-bottom: 1px solid #e8e8ea;
	background: #fafafa
}

.dist-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px
}

@media(max-width: 820px) {
	.dist-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px
	}
}

@media(max-width: 560px) {
	.dist-stats__grid {
		grid-template-columns: 1fr;
		gap: 16px
	}
}

.dist-stats__item {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 12px;
	border-left: 1px solid #e8e8ea
}

.dist-stats__item:first-child {
	border-left: 0
}

@media(max-width: 820px) {
	.dist-stats__item:nth-child(3) {
		border-left: 0
	}
}

@media(max-width: 560px) {
	.dist-stats__item {
		border-left: 0;
		padding-top: 12px;
		padding-bottom: 12px;
		border-top: 1px solid #e8e8ea
	}

	.dist-stats__item:first-child {
		border-top: 0;
		padding-top: 0
	}
}

.dist-stats__num {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #101114
}

.dist-stats__label {
	font-size: 12px;
	color: #6a6d73;
	letter-spacing: .01em;
	line-height: 1.4
}

.dist-form-section {
	padding: 96px 0
}

@media(max-width: 820px) {
	.dist-form-section {
		padding: 56px 0
	}
}

.dist-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: stretch
}

@media(max-width: 820px) {
	.dist-form__grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

.dist-form__image {
	position: relative;
	margin: 0;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fafafa;
	overflow: hidden;
	min-height: 520px
}

@media(max-width: 820px) {
	.dist-form__image {
		min-height: 320px
	}
}

.dist-form__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.dist-form__quote {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	padding: 20px 24px;
	margin: 0;
	background: rgba(16, 24, 42, .88);
	border: 1px solid hsla(0, 0%, 100%, .08);
	border-radius: 5px;
	color: #fff;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px)
}

.dist-form__quote blockquote {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500
}

.dist-form__quote blockquote::before {
	content: "“";
	margin-right: 2px
}

.dist-form__quote blockquote::after {
	content: "”";
	margin-left: 2px
}

.dist-form__quote cite {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	font-style: normal;
	color: hsla(0, 0%, 100%, .72);
	letter-spacing: .02em
}

.dist-form__quote-icon {
	width: 20px;
	height: 20px;
	color: #6eb7e6;
	margin-bottom: 6px;
	display: block
}

.dist-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 40px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px
}

@media(max-width: 820px) {
	.dist-form {
		padding: 24px
	}
}

.dist-form__title {
	margin: 0;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #101114
}

.dist-form__lead {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #6a6d73
}

.dist-form__lead a {
	color: #0b5cff;
	font-weight: 600
}

.dist-form__lead a:hover {
	text-decoration: underline
}

.dist-form__group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 12px;
	/* border-top: 1px solid #e8e8ea */
}

.dist-form__group-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #8a8d94
}

.dist-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

@media(max-width: 560px) {
	.dist-form__row {
		grid-template-columns: 1fr;
		gap: 12px
	}
}

.dist-form__field input,
.dist-form__field textarea,
.dist-form__field select {
	width: 100%;
	padding: 12px 0 10px;
	font-family: inherit;
	font-size: 15px;
	color: #101114;
	background: rgba(0, 0, 0, 0);
	border: 0;
	border-bottom: 1px solid #d9d9dc;
	border-radius: 0;
	outline: none;
	transition: border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.dist-form__field input::placeholder,
.dist-form__field textarea::placeholder,
.dist-form__field select::placeholder {
	color: #8a8d94
}

.dist-form__field input:focus,
.dist-form__field textarea:focus,
.dist-form__field select:focus {
	border-bottom-color: #0b5cff
}

.dist-form__field textarea {
	resize: vertical;
	min-height: 64px;
	line-height: 1.5
}

.dist-form__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 24px !important;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='rgb(106,109,115)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 4px center;
	background-size: 12px 8px
}

.dist-form__select:invalid {
	color: #8a8d94
}

.dist-form__select option {
	color: #101114
}

.dist-form__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 8px
}

.dist-form__toggle-label {
	font-size: 14px;
	color: #6a6d73;
	font-weight: 500
}

.dist-form__toggle-group {
	display: inline-flex;
	gap: 6px
}

.dist-toggle {
	min-width: 58px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #101114;
	background: #fafafa;
	border: 1px solid #e8e8ea;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1), color 160ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.dist-toggle:hover {
	border-color: #d9d9dc
}

.dist-toggle[aria-pressed=true] {
	background: #0b5cff;
	color: #fff;
	border-color: #0b5cff
}

.dist-form__submit {
	margin-top: 12px
}

.dist-form__fineprint {
	margin: 0;
	font-size: 11px;
	line-height: 1.5;
	color: #8a8d94;
	text-align: center
}

.dist-form--success {
	justify-content: center;
	min-height: 360px;
	text-align: left;
	gap: 16px
}

.dist-form--success .dist-form__lead {
	max-width: 420px;
	font-size: 14px
}

.dist-form__success-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1f9d55;
	color: #fff;
	margin-bottom: 12px
}

.dist-form__success-badge svg {
	width: 24px;
	height: 24px
}

.dist-benefits {
	padding: 96px 0;
	background: #fafafa;
	border-top: 1px solid #e8e8ea
}

@media(max-width: 820px) {
	.dist-benefits {
		padding: 56px 0
	}
}

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

@media(max-width: 1024px) {
	.dist-benefits__grid {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width: 560px) {
	.dist-benefits__grid {
		grid-template-columns: 1fr
	}
}

.dist-benefits__form-wrap {
	max-width: 720px;
	margin: 56px auto 0
}

@media(max-width: 820px) {
	.dist-benefits__form-wrap {
		margin-top: 32px
	}
}

.dist-benefit {
	padding: 32px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	transition: border-color 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.dist-benefit:hover {
	border-color: #d9d9dc
}

.dist-benefit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #fafafa;
	border: 1px solid #d9d9dc;
	border-radius: 3px;
	color: #101114
}

.dist-benefit__icon svg {
	width: 22px;
	height: 22px
}

.dist-benefit__title {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.dist-benefit__text {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.65;
	color: #6a6d73
}

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

.contact-methods {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px
}

@media(max-width: 1024px) {
	.contact-methods {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width: 560px) {
	.contact-methods {
		grid-template-columns: 1fr
	}
}

.contact-method {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	transition: border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.contact-method:hover {
	border-color: #d9d9dc;
	transform: translateY(-2px)
}

.contact-method:hover .arrow {
	transform: translateX(3px)
}

.contact-method__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
	border: 1px solid #d9d9dc;
	border-radius: 3px;
	color: #101114
}

.contact-method__icon svg {
	width: 22px;
	height: 22px
}

.contact-method__title {
	margin-top: 12px;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101114
}

.contact-method__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #6a6d73;
	flex: 1
}

.contact-method__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #0b5cff;
	word-break: break-word;
	transition: color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.contact-method__link:hover {
	color: #0945c4
}

.contact-method__link .arrow {
	transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
	flex-shrink: 0
}

.contact-method__meta {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #e8e8ea;
	font-size: 11px;
	color: #8a8d94;
	letter-spacing: .02em;
	line-height: 1.5
}

.contact-form-wrap {
	max-width: 680px;
	margin: 40px auto 0
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 40px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px
}

@media(max-width: 820px) {
	.contact-form {
		padding: 24px
	}
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

@media(max-width: 560px) {
	.contact-form__row {
		grid-template-columns: 1fr;
		gap: 12px
	}
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
	width: 100%;
	padding: 12px 0 10px;
	font-family: inherit;
	font-size: 15px;
	color: #101114;
	background: rgba(0, 0, 0, 0);
	border: 0;
	border-bottom: 1px solid #d9d9dc;
	border-radius: 0;
	outline: none;
	transition: border-color 160ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.contact-form__field select::placeholder {
	color: #8a8d94
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
	border-bottom-color: #0b5cff
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 140px;
	line-height: 1.55
}

.contact-form__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 24px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236a6d73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 4px center;
	background-size: 12px 8px;
	cursor: pointer
}

.contact-form__select:invalid {
	color: #8a8d94
}

.contact-form__select option {
	color: #101114
}

.contact-form__submit {
	margin-top: 12px
}

.contact-form__fineprint {
	margin: 0;
	font-size: 11px;
	line-height: 1.5;
	color: #8a8d94;
	text-align: center
}

.contact-form--success {
	align-items: flex-start;
	justify-content: center;
	min-height: 280px;
	gap: 16px;
	text-align: left
}

.contact-form__success-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #1f9d55;
	color: #fff;
	margin-bottom: 12px
}

.contact-form__success-badge svg {
	width: 24px;
	height: 24px
}

.contact-form__title {
	margin: 0;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #101114
}

.contact-form__lead {
	margin: 0;
	font-size: 14px;
	color: #6a6d73;
	line-height: 1.6;
	max-width: 480px
}

.contact-form__lead a {
	color: #0b5cff;
	font-weight: 600
}

.contact-form__lead a:hover {
	text-decoration: underline
}

.legal {
	background: #fff
}

.legal__header {
	padding: 72px 0 40px;
	background: #fafafa;
	border-bottom: 1px solid #e8e8ea
}

@media(max-width: 820px) {
	.legal__header {
		padding: 40px 0 32px
	}
}

.legal__toc {
	max-width: 720px;
	margin: 24px auto 0;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid #e8e8ea;
	border-radius: 5px
}

.legal__toc ol {
	counter-reset: toc;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px
}

.legal__toc ol li {
	counter-increment: toc;
	font-size: 14px;
	line-height: 1.5
}

.legal__toc ol li::before {
	content: counter(toc, upper-roman) ".";
	display: inline-block;
	width: 28px;
	font-weight: 700;
	color: #6a6d73;
	letter-spacing: .02em
}

.legal__toc ol a {
	font-weight: 600;
	color: #0b5cff
}

.legal__toc ol a:hover {
	text-decoration: underline
}

.legal__doc {
	padding: 72px 0 56px;
	border-bottom: 1px solid #e8e8ea
}

.legal__doc:last-child {
	border-bottom: 0
}

@media(max-width: 820px) {
	.legal__doc {
		padding: 40px 0 32px
	}
}

.legal__container {
	max-width: 760px;
	margin: 0 auto
}

.legal__doc-title {
	margin: 0 0 24px;
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #101114
}

.legal__doc-title::before {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: #0b5cff;
	margin-bottom: 16px;
	border-radius: 2px
}

.legal__subtitle {
	margin: 40px 0 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #101114
}

.legal__lead {
	font-weight: 600;
	font-size: 15px;
	color: #101114
}

.legal__doc p {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.75;
	color: #101114
}

.legal__doc p a {
	color: #0b5cff
}

.legal__doc p a:hover {
	text-decoration: underline
}

.legal__doc p strong {
	font-weight: 700
}

.legal__doc ul {
	margin: 0 0 16px;
	padding-left: 24px;
	list-style: disc
}

.legal__doc ul li {
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.7;
	color: #101114
}

.legal__doc ul li::marker {
	color: #0b5cff
}

.legal__doc ul strong {
	font-weight: 700
}

.legal__address {
	display: block;
	margin: 0 0 24px;
	padding: 20px 24px;
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	color: #101114;
	background: #fafafa;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	border-left: 3px solid #0b5cff
}

.cta {
	padding: 72px 0;
	border-top: 1px solid #e8e8ea;
	border-bottom: 1px solid #e8e8ea;
	background: #fafafa
}

.cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 40px 32px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff
}

@media(max-width: 820px) {
	.cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 32px 24px
	}
}

.cta__text {
	max-width: 560px
}

.cta__text h3 {
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 700;
	letter-spacing: -0.02em
}

.cta__text p {
	margin-top: 12px;
	color: #6a6d73;
	font-size: 16px
}

.cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.app-badges {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.app-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border: 1px solid #e8e8ea;
	border-radius: 5px;
	background: #fff;
	color: #101114;
	transition: border-color 200ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 200ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.app-badge:hover {
	border-color: #d9d9dc;
	background-color: #fafafa
}

.app-badge .app-badge__icon {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #101114
}

.app-badge .app-badge__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1
}

.app-badge .app-badge__text .t1 {
	font-size: 10px;
	color: #6a6d73;
	text-transform: uppercase;
	letter-spacing: .1em
}

.app-badge .app-badge__text .t2 {
	font-size: 14px;
	font-weight: 600
}

.footer {
	background: #10527f;
	color: #fff;
	border-top: 0;
	padding-top: 72px
}

.footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px
}

@media(max-width: 1024px) {
	.footer__inner {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width: 560px) {
	.footer__inner {
		grid-template-columns: 1fr;
		gap: 24px
	}
}

.footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 700;
	color: #fff
}

.footer__logo {
	display: block;
	height: 36px;
	width: auto
}

.footer__desc {
	margin-top: 16px;
	max-width: 320px;
	font-size: 14px;
	color: hsla(0, 0%, 100%, .72);
	line-height: 1.6
}

.footer__col h4 {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: hsla(0, 0%, 100%, .5);
	margin-bottom: 16px
}

.footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 12px
}

.footer__col ul a {
	font-size: 14px;
	color: hsla(0, 0%, 100%, .72);
	transition: color 120ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.footer__col ul a:hover {
	color: #6eb7e6
}

.footer__bottom {
	margin-top: 56px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid hsla(0, 0%, 100%, .1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 13px;
	color: hsla(0, 0%, 100%, .72)
}

.footer__bottom div {
	display: flex;
	gap: 20px
}

.footer__bottom a {
	color: hsla(0, 0%, 100%, .72);
	transition: color 120ms cubic-bezier(0.2, 0.7, 0.2, 1)
}

.footer__bottom a:hover {
	color: #6eb7e6
}

@media(max-width: 560px) {
	.footer__bottom {
		flex-direction: column;
		align-items: flex-start
	}
}

html.demo-open,
html.demo-open body {
	overflow: hidden
}

.demo {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center
}

.demo.is-open {
	display: flex
}

.demo__backdrop {
	position: absolute;
	inset: 0;
	background: #000;
	cursor: pointer
}

.demo__close {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 2;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: hsla(0, 0%, 100%, .08);
	border: 1px solid hsla(0, 0%, 100%, .16);
	border-radius: 50%;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease
}

.demo__close:hover {
	background: hsla(0, 0%, 100%, .18);
	border-color: hsla(0, 0%, 100%, .28)
}

.demo__close svg {
	width: 18px;
	height: 18px
}

.demo__stage {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px
}

.demo__hint {
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: hsla(0, 0%, 100%, .4)
}

.demo__device {
	position: relative;
	width: 360px;
	height: 720px;
	max-width: calc(100vw - 40px);
	max-height: calc(100vh - 100px);
	padding: 12px;
	background: #0a0a0b;
	border: 1px solid #1a1a1c;
	border-radius: 26px;
	overflow: hidden;
	flex-shrink: 0
}

@media(max-width: 520px) {
	.demo__device {
		width: 100vw;
		height: 100vh;
		max-height: 100vh;
		border-radius: 0;
		padding: 0;
		border: 0
	}
}

.demo__device-notch {
	position: absolute;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 18px;
	background: #000;
	border-radius: 999px;
	z-index: 3
}

@media(max-width: 520px) {
	.demo__device-notch {
		top: 10px
	}
}

.demo__screens {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(180deg, #0a1528 0%, #071021 100%);
	color: #fff
}

@media(max-width: 520px) {
	.demo__screens {
		border-radius: 0
	}
}

.demo__screen {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	padding: 56px 22px 28px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease
}

.demo__screen.is-active {
	opacity: 1;
	pointer-events: auto
}

.demo__screen-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
	overflow-y: auto
}

.demo__screen-body--welcome {
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 28px
}

.demo__screen-body--center {
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 16px
}

.demo__screen-body--center-top {
	align-items: center;
	text-align: center;
	gap: 6px
}

.demo__screen-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 16px;
	flex-shrink: 0
}

.demo__back {
	position: absolute;
	top: 16px;
	left: 14px;
	z-index: 1;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0);
	border: 0;
	color: hsla(0, 0%, 100%, .64);
	cursor: pointer;
	transition: color 160ms ease
}

.demo__back:hover {
	color: #fff
}

.demo__back svg {
	width: 20px;
	height: 20px
}

.demo__title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	color: #fff
}

.demo__title--success {
	color: #4ade80
}

.demo__sub {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: hsla(0, 0%, 100%, .64)
}

.demo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 18px;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0);
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease
}

.demo__btn:active {
	transform: scale(0.98)
}

.demo__btn--primary {
	background: #4aa8e8;
	color: #fff
}

.demo__btn--primary:hover {
	background: #62b8f0
}

.demo__btn--ghost {
	background: hsla(0, 0%, 100%, .04);
	border-color: hsla(0, 0%, 100%, .14);
	color: #fff
}

.demo__btn--ghost:hover {
	background: hsla(0, 0%, 100%, .1);
	border-color: hsla(0, 0%, 100%, .22)
}

.demo__btn--link {
	background: rgba(0, 0, 0, 0);
	color: #4aa8e8;
	padding: 10px 12px;
	font-weight: 600
}

.demo__btn--link:hover {
	color: #62b8f0
}

.demo__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px
}

.demo__brand-name {
	margin: 0;
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	color: #fff
}

.demo__brand-tag {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: hsla(0, 0%, 100%, .72)
}

.demo__car-art {
	width: 220px;
	height: auto;
	color: hsla(0, 0%, 100%, .9);
	margin-top: 8px
}

.demo__car-art--sm {
	width: 160px;
	margin: 0 auto 6px;
	color: hsla(0, 0%, 100%, .75)
}

.demo__bt {
	position: relative;
	width: 92px;
	height: 92px;
	margin: 0 auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4aa8e8
}

.demo__bt-icon {
	position: relative;
	z-index: 2;
	width: 40px;
	height: 40px
}

.demo__bt-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(74, 168, 232, .5);
	animation: demo-bt-pulse 2.4s ease-out infinite
}

.demo__bt-ring:nth-child(2) {
	animation-delay: 1.2s
}

@keyframes demo-bt-pulse {
	0% {
		transform: scale(0.6);
		opacity: .8
	}

	80% {
		transform: scale(1.3);
		opacity: 0
	}

	100% {
		transform: scale(1.3);
		opacity: 0
	}
}

@media(prefers-reduced-motion: reduce) {
	.demo__bt-ring {
		animation: none;
		opacity: .3
	}
}

.demo__options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 6px
}

.demo__option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 14px;
	background: hsla(0, 0%, 100%, .04);
	border: 1px solid hsla(0, 0%, 100%, .12);
	border-radius: 12px;
	color: #fff;
	text-align: left;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease
}

.demo__option:hover {
	border-color: hsla(0, 0%, 100%, .24)
}

.demo__option.is-selected {
	background: rgba(74, 168, 232, .12);
	border-color: #4aa8e8
}

.demo__option.is-selected .demo__option-check {
	opacity: 1
}

.demo__option-icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: hsla(0, 0%, 100%, .06);
	border-radius: 8px;
	color: #fff;
	flex-shrink: 0
}

.demo__option-icon svg {
	width: 20px;
	height: 20px
}

.demo__option-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px
}

.demo__option-title {
	font-size: 14px;
	font-weight: 600;
	color: #fff
}

.demo__option-sub {
	font-size: 12px;
	color: hsla(0, 0%, 100%, .64)
}

.demo__option-check {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #4aa8e8;
	color: #fff;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 160ms ease
}

.demo__option-check svg {
	width: 12px;
	height: 12px
}

.demo__field {
	display: flex;
	flex-direction: column;
	gap: 6px
}

.demo__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: hsla(0, 0%, 100%, .42)
}

.demo__input {
	padding: 12px 14px;
	font: inherit;
	font-size: 15px;
	color: #fff;
	background: hsla(0, 0%, 100%, .04);
	border: 1px solid hsla(0, 0%, 100%, .12);
	border-radius: 10px;
	outline: none;
	transition: border-color 160ms ease, background 160ms ease
}

.demo__input::placeholder {
	color: hsla(0, 0%, 100%, .42)
}

.demo__input:focus {
	border-color: #4aa8e8;
	background: hsla(0, 0%, 100%, .06)
}

.demo__input--select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 36px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='rgb(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px
}

.demo__input--select option {
	color: #111
}

.demo__pill-stack {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 20px
}

.demo__input--pill {
	padding: 15px 26px;
	font-size: 15px;
	border-radius: 999px;
	border-color: rgba(74, 168, 232, .65);
	background: rgba(0, 0, 0, 0);
	color: #fff;
	text-align: left
}

.demo__input--pill::placeholder {
	color: hsla(0, 0%, 100%, .42)
}

.demo__input--pill:focus {
	border-color: #4aa8e8;
	background: rgba(74, 168, 232, .06)
}

.demo__input--pill:invalid {
	color: hsla(0, 0%, 100%, .42)
}

.demo__input--pill.demo__input--select {
	padding-right: 50px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path d='M7 10L0 0h14z' fill='rgb(74,168,232)'/></svg>");
	background-repeat: no-repeat;
	background-position: right 22px center;
	background-size: 12px 8px
}

.demo__btn--pill {
	border-radius: 999px;
	padding: 16px 22px
}

.demo__vehicle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 20px 16px;
	background: hsla(0, 0%, 100%, .04);
	border: 1px solid hsla(0, 0%, 100%, .12);
	border-radius: 12px;
	text-align: center;
	margin-top: 4px
}

.demo__vehicle-year {
	font-size: 12px;
	letter-spacing: .14em;
	color: hsla(0, 0%, 100%, .64);
	text-transform: uppercase
}

.demo__vehicle-make {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #fff
}

.demo__vehicle-trim {
	font-size: 12px;
	color: hsla(0, 0%, 100%, .42);
	margin-top: 2px
}

.demo__key-art {
	margin: 0 auto 4px;
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: hsla(0, 0%, 100%, .04);
	border: 1px solid hsla(0, 0%, 100%, .08);
	border-radius: 22px;
	color: #4aa8e8
}

.demo__key-art svg {
	width: 52px;
	height: 52px
}

.demo__checklist {
	list-style: none;
	margin: 8px 0 0;
	padding: 14px;
	background: hsla(0, 0%, 100%, .04);
	border: 1px solid hsla(0, 0%, 100%, .12);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.demo__checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #fff
}

.demo__checklist-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0
}

.demo__checklist-dot--active {
	background: #4aa8e8;
	box-shadow: 0 0 0 3px rgba(74, 168, 232, .25);
	animation: demo-dot-pulse 1.6s ease-in-out infinite
}

@keyframes demo-dot-pulse {

	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(74, 168, 232, .2)
	}

	50% {
		box-shadow: 0 0 0 6px rgba(74, 168, 232, .08)
	}
}

@media(prefers-reduced-motion: reduce) {
	.demo__checklist-dot--active {
		animation: none
	}
}

.demo__spinner {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto
}

.demo__spinner-ring {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid hsla(0, 0%, 100%, .08);
	border-top-color: #4aa8e8;
	animation: demo-spin .9s linear infinite
}

@keyframes demo-spin {
	to {
		transform: rotate(360deg)
	}
}

.demo__progress {
	width: 100%;
	height: 4px;
	margin-top: 8px;
	background: hsla(0, 0%, 100%, .08);
	border-radius: 999px;
	overflow: hidden
}

.demo__progress-fill {
	display: block;
	width: 0;
	height: 100%;
	background: #4aa8e8;
	border-radius: 999px
}

.demo__screen[data-screen=programming].is-active .demo__progress-fill {
	animation: demo-progress 3.5s ease-out forwards
}

@keyframes demo-progress {
	0% {
		width: 0
	}

	15% {
		width: 22%
	}

	50% {
		width: 60%
	}

	80% {
		width: 85%
	}

	100% {
		width: 100%
	}
}

.demo__progress-note {
	font-size: 11px;
	color: hsla(0, 0%, 100%, .42);
	margin-top: 6px;
	letter-spacing: .02em
}

@media(prefers-reduced-motion: reduce) {
	.demo__spinner-ring {
		animation: none
	}

	.demo__screen[data-screen=programming].is-active .demo__progress-fill {
		animation: none;
		width: 100%
	}
}

.demo__success-badge {
	width: 84px;
	height: 84px;
	margin: 0 auto 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #4ade80;
	color: #fff;
	animation: demo-pop 420ms cubic-bezier(0.2, 0.9, 0.3, 1.3) both
}

.demo__success-badge svg {
	width: 40px;
	height: 40px
}

@keyframes demo-pop {
	from {
		transform: scale(0.5);
		opacity: 0
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

@media(prefers-reduced-motion: reduce) {
	.demo__success-badge {
		animation: none
	}
}

.hero__phone.is-demo-trigger {
	cursor: pointer;
	outline: 0
}

.hero__phone.is-demo-trigger:hover {
	opacity: .97
}

.hero__phone.is-demo-trigger:focus-visible {
	outline: 2px solid #0b5cff;
	outline-offset: 6px
}

.fv-error input,
.fv-error textarea,
.fv-error select {
	border-bottom-color: #ef4444 !important
}

.fv-msg {
	display: block;
	font-size: 11.5px;
	font-weight: 500;
	color: #ef4444;
	margin-top: 5px;
	line-height: 1.4
}

.pmk-toast {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%) translateY(12px);
	background: #1a1d23;
	color: #fff;
	padding: 11px 22px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .01em;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .22);
	opacity: 0;
	transition: opacity 200ms ease, transform 200ms ease;
	pointer-events: none;
	z-index: 9999;
	max-width: calc(100vw - 32px);
	white-space: nowrap
}

.pmk-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0)
}