html,
body,
div,
span,
h1,
h2,
p,
a,
img,
ul,
li,
footer,
header,
main,
nav,
section,
button {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

header,
main,
nav,
section,
footer {
	display: block;
}

:root {
	--ink: #171827;
	--ink-soft: #303348;
	--muted: #62687a;
	--line: #dde3ee;
	--surface: #ffffff;
	--surface-soft: #eef4fb;
	--violet: #6433bd;
	--violet-deep: #251c42;
	--lime: #8ab914;
	--blue: #2783f6;
	--teal: #22aeb2;
	--danger: #e1543f;
	--shadow: 0 22px 54px rgba(24, 27, 44, .14);
}

html {
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	min-width: 300px;
	min-height: 100%;
	background: #f5f7fb;
	color: var(--ink);
	font-family: "PT Sans", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.45;
}

* {
	box-sizing: border-box;
	outline-color: var(--blue);
}

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

ul {
	list-style: none;
}

a {
	color: var(--violet);
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

a:hover {
	color: #4c229b;
}

button {
	background: none;
	cursor: pointer;
}

.container {
	width: min(100% - 48px, 1160px);
	margin: 0 auto;
}

.responsive-image {
	width: 100%;
	height: auto;
}

h2 {
	color: var(--ink);
	font-size: 38px;
	font-weight: 700;
	line-height: 1.08;
}

.section-kicker,
.preview-kicker {
	color: var(--teal);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.preview {
	position: relative;
	isolation: isolate;
	min-height: min(650px, calc(100svh - 68px));
	overflow: hidden;
	color: #fff;
	background-color: #252438;
	background-image:
		linear-gradient(90deg, rgba(18, 18, 32, .94) 0%, rgba(28, 26, 52, .82) 48%, rgba(28, 26, 52, .44) 100%),
		url("https://unu.im/i/bg1.jpg");
	background-position: center;
	background-size: cover;
}

.preview::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 34%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 82px);
	mix-blend-mode: screen;
	opacity: .42;
}

.preview-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 0 8px;
}

.preview-brand {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}

.preview-brand img {
	width: 124px;
	height: auto;
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .18));
}

.user {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.user a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	color: rgba(255, 255, 255, .88);
	font-weight: 700;
}

.user a:hover {
	border-color: rgba(255, 255, 255, .62);
	color: #fff;
}

.preview-stage {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
	align-items: center;
	gap: 46px;
	padding: 72px 0 54px;
}

.preview-content {
	position: relative;
	z-index: 2;
	max-width: 690px;
}

.preview-title {
	max-width: 680px;
	margin-top: 14px;
	color: #fff;
	font-size: clamp(48px, 6.7vw, 78px);
	font-weight: 700;
	line-height: .98;
}

.preview-lead {
	max-width: 620px;
	margin-top: 22px;
	color: rgba(255, 255, 255, .82);
	font-size: 22px;
	line-height: 1.35;
}

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

.bt,
.bt-frame_white,
.bt-frame_purple,
.bt-green {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.bt-frame_white {
	background: #fff;
	color: #202236;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.bt-frame_white:hover {
	color: #202236;
	transform: translateY(-1px);
}

.bt-frame_purple {
	border: 1px solid rgba(255, 255, 255, .36);
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.bt-frame_purple:hover {
	border-color: rgba(255, 255, 255, .64);
	color: #fff;
	transform: translateY(-1px);
}

.bt {
	background: var(--ink);
	color: #fff;
}

.bt:hover {
	background: #25283b;
	color: #fff;
	transform: translateY(-1px);
}

.bt-green {
	background: var(--lime);
	color: #fff;
	box-shadow: 0 16px 34px rgba(138, 185, 20, .32);
}

.bt-green:hover {
	background: #98c91c;
	color: #fff;
	transform: translateY(-1px);
}

.ico-play::before {
	content: "";
	width: 0;
	height: 0;
	margin-right: 10px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid currentColor;
}

.preview-checks {
	position: relative;
	z-index: 2;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: 12px;
	max-width: 1010px;
	margin-top: 48px;
}

.check-list li {
	position: relative;
	padding-left: 32px;
	color: var(--ink-soft);
}

.check-list li + li {
	margin-top: 14px;
}

.check-list li::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, var(--lime), #44ba97);
}

.check-list li::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 7px;
	width: 6px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(42deg);
}

.preview-checks li {
	display: flex;
	align-items: flex-start;
	height: 100%;
	min-height: 112px;
	margin-top: 0;
	padding: 20px 20px 20px 52px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 8px;
	background: rgba(255, 255, 255, .11);
	color: rgba(255, 255, 255, .9);
	line-height: 1.34;
	backdrop-filter: blur(14px);
}

.preview-checks li + li {
	margin-top: 0;
}

.preview-checks li::before {
	top: 22px;
	left: 20px;
}

.preview-checks li::after {
	top: 27px;
	left: 27px;
}

.hero-campaign {
	position: relative;
	z-index: 1;
	width: min(100%, 430px);
	justify-self: end;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 26px;
	background: rgba(255, 255, 255, .1);
	box-shadow: 0 34px 80px rgba(0, 0, 0, .26);
	backdrop-filter: blur(16px);
}

.hero-campaign::before {
	content: "";
	position: absolute;
	inset: 26px -22px -22px 26px;
	z-index: -1;
	border-radius: 28px;
	background: rgba(138, 185, 20, .13);
}

.hero-campaign__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
	color: #fff;
}

.hero-campaign__head strong {
	font-size: 22px;
	font-weight: 700;
}

.hero-campaign__head span {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding-left: 25px;
	color: #dcefb2;
	font-size: 14px;
	font-weight: 700;
}

.hero-campaign__head span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 0 8px rgba(138, 185, 20, .18);
	transform: translateY(-50%);
}

.hero-campaign__steps {
	display: grid;
	gap: 12px;
}

.hero-campaign__step {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 88px;
	padding: 18px 22px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .94);
	color: var(--ink);
}

.hero-campaign__step b {
	display: block;
	font-size: 18px;
	line-height: 1.18;
}

.hero-campaign__step span {
	display: block;
	margin-top: 8px;
	color: #777287;
	font-size: 15px;
	line-height: 1.25;
}

.hero-campaign__step i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 13px;
	border-radius: 999px;
	background: #f2ecff;
	color: var(--violet);
	font-style: normal;
	font-weight: 700;
	white-space: nowrap;
}

.hero-campaign__footer {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.hero-campaign__footer span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
}

.progress {
	position: relative;
	z-index: 3;
	padding: 0 0 52px;
	background: #f5f7fb;
}

.progress-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	transform: translateY(-26px);
	margin-bottom: -26px;
}

.progress-item {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 132px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.progress-item__icon {
	flex: 0 0 auto;
	width: 64px;
}

.progress__icon-one {
	width: 78px;
}

.progress__icon-two,
.progress__icon-three {
	width: 64px;
}

.progress-item__text {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.2;
}

.progress-item__text span {
	display: block;
	margin-bottom: 4px;
	color: var(--ink);
	font-size: clamp(27px, 3vw, 34px);
	font-weight: 700;
	line-height: 1;
}

.process {
	padding: 58px 0 70px;
	background: var(--surface);
}

.process-layout {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(280px, .8fr);
	align-items: center;
	gap: 54px;
}

.process-text h2,
.services h2,
.info-block h2 {
	margin-top: 8px;
}

.numbering-list {
	margin-top: 28px;
	counter-reset: item;
}

.numbering-list li {
	position: relative;
	min-height: 48px;
	padding: 11px 0 0 64px;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.28;
	counter-increment: item;
}

.numbering-list li + li {
	margin-top: 18px;
}

.numbering-list li::before {
	content: counter(item);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(100, 51, 189, .28);
	border-radius: 50%;
	background: #f7f3ff;
	color: var(--violet);
	font-weight: 700;
}

.process .bt {
	margin-top: 34px;
}

.process-image {
	position: relative;
}

.process-image::before {
	content: "";
	position: absolute;
	inset: 10% -3% 4% 12%;
	z-index: 0;
	border-radius: 8px;
	background: #e9f2ff;
}

.process-image img {
	position: relative;
	z-index: 1;
	max-width: 420px;
	margin: 0 auto;
}

.info-block {
	padding: 66px 0;
	background: var(--surface-soft);
}

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

.info-block__column {
	padding: 34px;
	border: 1px solid rgba(100, 51, 189, .12);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 14px 36px rgba(33, 38, 59, .08);
}

.info-block .check-list {
	margin-top: 24px;
}

.info-block .check-list a {
	font-weight: 700;
}

.services {
	padding: 68px 0 74px;
	background: #251c42;
	color: #fff;
}

.services .section-kicker {
	color: #9ee1e4;
}

.services h2 {
	color: #fff;
}

.services-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.services-link__all {
	margin-top: 30px;
	text-align: center;
}

.services-link__all a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding-right: 30px;
	color: rgba(255, 255, 255, .72);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.services-link__all a:hover {
	color: #fff;
}

.services-link__all a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-62%) rotate(45deg);
	transition: transform .2s ease;
}

.services-link__all a.active::after {
	transform: translateY(-36%) rotate(225deg);
}

.services-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.services-list[hidden] {
	display: none;
}

.services-item {
	min-height: 210px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: rgba(255, 255, 255, .07);
}

.services-item__icon {
	width: 34px;
	height: 34px;
	margin-bottom: 16px;
}

.services-item__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.services-item__title {
	min-height: 44px;
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.12;
}

.services-item ul {
	margin-top: 12px;
}

.services-item li {
	position: relative;
	padding-left: 14px;
	font-size: 13px;
	line-height: 1.3;
}

.services-item li + li {
	margin-top: 6px;
}

.services-item li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--lime);
}

.services-item a {
	color: rgba(255, 255, 255, .72);
}

.services-item a:hover {
	color: #fff;
}

.footer {
	padding: 40px 0 44px;
	background: #171827;
	color: rgba(255, 255, 255, .72);
}

.footer-layout {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: start;
	gap: 42px;
}

.footer-logo img {
	width: 86px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 64px;
}

.footer-nav li + li {
	margin-top: 8px;
}

.footer a {
	color: rgba(255, 255, 255, .78);
}

.footer a:hover {
	color: #fff;
}

.share {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.share a,
.theme-toggle-share {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 700;
}

.share a:hover,
.theme-toggle-share:hover {
	border-color: rgba(255, 255, 255, .34);
	color: #fff;
}

.theme-icon {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: inset -6px -4px 0 #f3c94b;
}

.theme-toggle-share--spin .theme-icon {
	animation: theme-spin .45s ease;
}

.footer-copy {
	margin-top: 34px;
	color: rgba(255, 255, 255, .46);
	font-size: 12px;
	line-height: 1.5;
}

.footer-copy a {
	border-bottom: 1px solid currentColor;
}

html[data-theme="dark"] {
	--ink: #f4f7fb;
	--ink-soft: #d7deeb;
	--muted: #aab4c6;
	--line: #313750;
	--surface: #171827;
	--surface-soft: #10131f;
	--shadow: 0 22px 54px rgba(0, 0, 0, .28);
}

html[data-theme="dark"] body,
html[data-theme="dark"] .progress {
	background: #10131f;
}

html[data-theme="dark"] .process-image::before {
	background: #202840;
}

html[data-theme="dark"] .numbering-list li::before {
	background: #211a36;
}

html[data-theme="dark"] .preview::before {
	opacity: .22;
}

@keyframes theme-spin {
	to {
		transform: rotate(1turn);
	}
}

@media (max-width: 1050px) {
	.services-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.preview-stage {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
		gap: 32px;
	}

	.hero-campaign {
		padding: 22px;
	}

	.hero-campaign__step {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

@media (max-width: 860px) {
	.container {
		width: min(100% - 36px, 1160px);
	}

	.preview {
		min-height: auto;
	}

	.preview-stage {
		grid-template-columns: 1fr;
		padding: 56px 0 42px;
	}

	.preview-title {
		font-size: clamp(42px, 11vw, 64px);
	}

	.preview-lead {
		font-size: 20px;
	}

	.preview-checks,
	.progress-grid,
	.audience-grid,
	.process-layout {
		grid-template-columns: 1fr;
	}

	.preview-checks {
		margin-top: 34px;
	}

	.hero-campaign {
		display: none;
	}

	.process-layout {
		gap: 30px;
	}

	.process-image {
		order: -1;
		max-width: 480px;
		margin: 0 auto;
	}

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

	.footer-layout {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.share {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	h2 {
		font-size: 31px;
	}

	.container {
		width: min(100% - 28px, 1160px);
	}

	.preview-nav {
		align-items: flex-start;
		padding-top: 18px;
	}

	.preview-brand img {
		width: 104px;
	}

	.user {
		gap: 8px;
	}

	.user a {
		min-height: 34px;
		padding: 0 11px;
		font-size: 14px;
	}

	.preview-stage {
		padding-top: 42px;
	}

	.preview-title {
		font-size: clamp(38px, 13vw, 52px);
	}

	.preview-lead {
		font-size: 18px;
	}

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

	.bt,
	.bt-frame_white,
	.bt-frame_purple,
	.bt-green {
		width: 100%;
		white-space: normal;
	}

	.progress-item {
		min-height: 112px;
		padding: 20px;
	}

	.progress-item__icon,
	.progress__icon-one,
	.progress__icon-two,
	.progress__icon-three {
		width: 54px;
	}

	.process,
	.info-block,
	.services {
		padding: 48px 0;
	}

	.info-block__column {
		padding: 24px;
	}

	.services-list {
		grid-template-columns: 1fr;
	}

	.services-item {
		min-height: auto;
	}

	.services-item__title {
		min-height: 0;
	}

	.footer-nav {
		gap: 22px 36px;
	}
}

@media (max-width: 420px) {
	.preview-nav {
		display: block;
	}

	.user {
		justify-content: flex-start;
		margin-top: 14px;
	}
}
