.intro__browser {
	position: relative;
}

.intro__browser-wrap {
	margin-top: 44px;
}

.intro-demo__transition {
	position: relative;
	padding-top: 96px;
}

.intro-demo__arc {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 154px;
	transform: translateX(-50%);
	pointer-events: none;
}

.intro-demo__arc svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.intro-demo__arc-stop_violet {
	stop-color: #835af5;
}

.intro-demo__arc-stop_pink {
	stop-color: #ff3983;
}

.intro-demo__arc-stop_yellow {
	stop-color: #fdc50d;
}

.intro-demo__lead {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto 18px;
	text-align: center;
}

.intro-demo__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #7554e8;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.intro-demo__eyebrow::before {
	width: 8px;
	height: 8px;
	content: "";
	border: 3px solid rgba(117, 84, 232, 0.16);
	border-radius: 50%;
	background: #7554e8;
	box-sizing: content-box;
}

.intro-demo__lead-text {
	margin: 0;
	color: #676b76;
	font-size: 16px;
	line-height: 1.45;
}

.intro-demo__route-arrow {
	display: block;
	width: 24px;
	height: 24px;
	margin: 18px auto 0;
	color: #7554e8;
	animation: intro-demo-arrow 1.6s ease-in-out infinite;
}

.intro-demo__tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 14px;
}

.intro-demo__tab {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 18px;
	border: 1px solid rgba(41, 44, 52, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.76);
	color: #292c34;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.intro-demo__tab:hover {
	border-color: rgba(41, 44, 52, 0.34);
	background: rgba(255, 255, 255, 0.96);
}

.intro-demo__tab:focus-visible {
	outline: 3px solid rgba(131, 90, 245, 0.24);
	outline-offset: 2px;
}

.intro-demo__tab_active {
	border-color: #292c34;
	background: #292c34;
	color: #fff;
}

.intro-demo__tab_active:hover {
	border-color: #17191e;
	background: #17191e;
}

.intro-demo__panel {
	isolation: isolate;
}

.intro-demo__embed {
	position: relative;
	box-sizing: content-box;
	width: 100%;
	aspect-ratio: 1.778344;
	background: #f7f8fa;
}

.intro-demo__embed::after {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
	content: "";
	border: 2px solid rgba(41, 44, 52, 0.14);
	border-top-color: #835af5;
	border-radius: 50%;
	animation: intro-demo-spin 0.8s linear infinite;
}

.intro-demo__embed iframe {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #fff;
	transition: opacity 0.18s ease;
}

.intro-demo__embed_loading iframe {
	opacity: 0;
}

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

@keyframes intro-demo-arrow {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(4px);
	}
}

@media (min-width: 1320px) {
	.intro .section__desc {
		max-width: 1040px;
		font-size: 21px;
		line-height: 1.4;
	}
}

@media (max-width: 767px) {
	.intro__browser-wrap {
		margin-top: 36px;
	}

	.intro-demo__transition {
		padding-top: 54px;
	}

	.intro-demo__arc {
		height: 82px;
	}

	.intro-demo__lead {
		margin-bottom: 14px;
	}

	.intro-demo__eyebrow {
		margin-bottom: 14px;
	}

	.intro-demo__lead-text {
		font-size: 15px;
	}

	.intro-demo__route-arrow {
		margin-top: 14px;
	}

	.intro-demo__tabs {
		display: flex;
		gap: 8px;
		margin-right: -20px;
		padding-right: 20px;
		overflow-x: auto;
		scrollbar-width: none;
		scroll-snap-type: x proximity;
	}

	.intro-demo__tabs::-webkit-scrollbar {
		display: none;
	}

	.intro-demo__tab {
		flex: 0 0 auto;
		min-width: 170px;
		min-height: 46px;
		padding: 10px 14px;
		font-size: 14px;
		scroll-snap-align: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.intro-demo__embed::after {
		animation-duration: 1.8s;
	}

	.intro-demo__route-arrow {
		animation: none;
	}

	.intro-demo__embed iframe {
		transition: none;
	}
}
