/* ================================================================
	ROOT
	================================================================ */

:root {
	--blue: #2196f3;
	--blue-dark: #1976d2;

	--text: #111111;
	--text-secondary: #737b86;

	--white: #ffffff;

	--footer-background: #fbfaf5;
	--footer-text: #9a968b;

	--hero-bg:
		linear-gradient(
			180deg,
			#eaf6ff 0%,
			#f4faff 36%,
			#ffffff 100%
		);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;

	color: var(--text);

	background: #fff;

	overflow-x: hidden;
}

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

button,
a,
input {
	font: inherit;
}

img {
	max-width: 100%;
}

.material-symbols-rounded {
	font-variation-settings:
		"FILL" 0,
		"wght" 500,
		"GRAD" 0,
		"opsz" 24;
}

/* ================================================================
	MENU
	================================================================ */

.header {
	position: fixed;

	z-index: 100;

	top: 0;
	left: 0;
	right: 0;

	height: 82px;

	display: flex;
	align-items: center;

	background:
		rgba(239, 248, 255, .86);

	backdrop-filter:
		blur(18px);

	-webkit-backdrop-filter:
		blur(18px);

	border-bottom:
		1px solid rgba(33, 150, 243, .07);
}

.nav {
	width:
		min(
			1380px,
			calc(100% - 48px)
		);

	margin:
		0 auto;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;
}

/* ================================================================
	BRAND / PNG LOGO
	================================================================ */

.brand {
	display: inline-flex;
	align-items: center;

	flex-shrink: 0;

	color: #111111;

	text-decoration: none;
}

.brand-logo {
	display: block;

	width: auto;
	height: 44px;

	max-width: 170px;

	object-fit: contain;

	flex-shrink: 0;
}

.nav-links {
	display: flex;
	align-items: center;

	gap: 42px;

	color: #596571;

	font-weight: 650;
}

.nav-links a {
	transition:
		color .18s ease,
		transform .18s ease;
}

.nav-links a:hover {
	color: var(--blue);

	transform:
		translateY(-1px);
}

.nav-actions {
	display: flex;
	align-items: center;

	gap: 10px;
}

.button {
	min-height: 46px;

	padding:
		0 22px;

	border: 0;

	border-radius: 999px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 8px;

	font-weight: 750;

	cursor: pointer;

	transition:
		transform .18s ease,
		box-shadow .18s ease,
		opacity .18s ease;
}

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

.button-primary {
	background:
		linear-gradient(
			135deg,
			#2196f3,
			#1976d2
		);

	color: #fff;

	box-shadow:
		0 10px 28px
			rgba(33, 150, 243, .25);
}

.button-soft {
	background:
		rgba(255, 255, 255, .78);

	color: #27303a;

	border:
		1px solid
			rgba(33, 150, 243, .10);
}

/* ================================================================
	HERO
	================================================================ */

.hero {
	position: relative;

	min-height: 920px;

	padding:
		155px 24px 80px;

	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 28%,
			rgba(33, 150, 243, .14),
			transparent 34%
		),
		var(--hero-bg);
}

.hero::before {
	content: "";

	position: absolute;

	width: 720px;
	height: 720px;

	left: 50%;
	top: 120px;

	transform:
		translateX(-50%);

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(33, 150, 243, .14),
			rgba(33, 150, 243, 0) 68%
		);

	filter:
		blur(18px);
}

.hero-inner {
	position: relative;

	z-index: 5;

	width:
		min(
			1120px,
			100%
		);

	display: flex;
	flex-direction: column;
	align-items: center;

	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;

	gap: 8px;

	padding:
		8px 13px;

	border-radius: 999px;

	background:
		rgba(255, 255, 255, .74);

	border:
		1px solid
			rgba(33, 150, 243, .12);

	color:
		var(--blue-dark);

	font-size: 13px;
	font-weight: 800;

	box-shadow:
		0 8px 25px
			rgba(33, 150, 243, .07);
}

.hero h1 {
	max-width: 930px;

	margin:
		22px auto 0;

	font-size:
		clamp(
			50px,
			7vw,
			94px
		);

	line-height: .98;

	letter-spacing: -5px;

	font-weight: 900;
}

.hero h1 .blue {
	color:
		var(--blue);
}

.hero-description {
	max-width: 720px;

	margin:
		25px auto 0;

	color: #697581;

	font-size:
		clamp(
			17px,
			2vw,
			21px
		);

	line-height: 1.65;

	font-weight: 500;
}

.hero-actions {
	margin-top: 29px;

	display: flex;
	align-items: center;
	justify-content: center;

	flex-wrap: wrap;

	gap: 12px;
}

.hero-actions
.button {
	min-height: 55px;

	padding:
		0 27px;

	font-size: 16px;
}

/* ================================================================
	PHONE
	================================================================ */

.hero-visual {
	position: relative;

	width: 570px;
	height: 395px;

	margin-top: 46px;
}

.phone {
	position: absolute;

	left: 50%;
	top: 5px;

	width: 246px;
	height: 360px;

	transform:
		translateX(-50%)
			rotate(-6deg);

	border-radius: 45px;

	padding: 13px;

	background:
		linear-gradient(
			150deg,
			#d9e2ea,
			#ffffff
		);

	box-shadow:
		0 45px 80px
			rgba(18, 78, 126, .22);

	border:
		1px solid
			rgba(17, 87, 145, .12);
}

.phone-screen {
	height: 100%;

	padding:
		24px 15px;

	border-radius: 34px;

	background:
		linear-gradient(
			180deg,
			#edf7ff,
			#ffffff
		);

	overflow: hidden;
}

.phone-notch {
	position: absolute;

	width: 76px;
	height: 21px;

	top: 10px;
	left: 50%;

	transform:
		translateX(-50%);

	border-radius: 999px;

	background: #111;
}

.phone-head {
	margin-top: 11px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.phone-logo {
	color:
		var(--blue-dark);

	font-size: 19px;
	font-weight: 900;
}

.phone-avatar {
	width: 31px;
	height: 31px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#2196f3,
			#7cc7ff
		);
}

.phone-search {
	height: 39px;

	margin-top: 17px;

	padding:
		0 12px;

	display: flex;
	align-items: center;

	gap: 8px;

	border-radius: 12px;

	background: #fff;

	color: #9ba4ad;

	font-size: 11px;

	box-shadow:
		0 5px 20px
			rgba(0, 0, 0, .05);
}

.phone-grid {
	display: grid;

	grid-template-columns:
		repeat(
			3,
			1fr
		);

	gap: 11px;

	margin-top: 17px;
}

.phone-item {
	height: 62px;

	border-radius: 16px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 3px;

	color: #fff;

	font-size: 9px;
	font-weight: 700;
}

.phone-item
.material-symbols-rounded {
	font-size: 22px;
}

.phone-card {
	margin-top: 16px;

	padding: 12px;

	border-radius: 17px;

	background: #fff;

	box-shadow:
		0 5px 20px
			rgba(0, 0, 0, .05);
}

.phone-card-title {
	font-size: 11px;
	font-weight: 800;
}

.phone-card-row {
	display: flex;

	gap: 8px;

	margin-top: 9px;
}

.phone-card-face {
	flex: 1;

	height: 55px;

	border-radius: 12px;

	background:
		linear-gradient(
			135deg,
			#e1f2ff,
			#c2e5ff
		);
}

.hero-badge {
	position: absolute;

	z-index: 4;

	right: 42px;
	bottom: 10px;

	width: 205px;

	padding: 19px;

	border-radius: 28px;

	background:
		rgba(255, 255, 255, .92);

	border:
		1px solid
			rgba(33, 150, 243, .10);

	box-shadow:
		0 30px 70px
			rgba(31, 87, 130, .20);

	transform:
		rotate(7deg);
}

.hero-badge-mark {
	width: 58px;
	height: 58px;

	margin:
		0 auto;

	border-radius: 17px;

	display: grid;
	place-items: center;

	background:
		linear-gradient(
			135deg,
			#2196f3,
			#1976d2
		);

	color: #fff;
}

.hero-badge-mark
.material-symbols-rounded {
	font-size: 33px;
}

.hero-badge strong {
	display: block;

	margin-top: 11px;

	font-size: 17px;
}

.hero-badge span {
	display: block;

	margin-top: 4px;

	color: #77818c;

	font-size: 11px;
	line-height: 1.45;
}

/* ================================================================
	FLOATING CATEGORIES
	================================================================ */

.float-category {
	position: absolute;

	z-index: 3;

	display: flex;
	align-items: center;

	gap: 10px;

	padding:
		9px 13px 9px 9px;

	border-radius: 18px;

	background:
		rgba(255, 255, 255, .91);

	border:
		1px solid
			rgba(33, 150, 243, .09);

	box-shadow:
		0 15px 40px
			rgba(31, 92, 142, .12);

	backdrop-filter:
		blur(12px);

	-webkit-backdrop-filter:
		blur(12px);

	font-size: 12px;
	font-weight: 750;

	animation:
		floating
		5s
		ease-in-out
		infinite;
}

.float-icon {
	width: 42px;
	height: 42px;

	flex-shrink: 0;

	border-radius: 13px;

	display: grid;
	place-items: center;

	color: #fff;
}

.float-icon
.material-symbols-rounded {
	font-size: 22px;
}

@keyframes floating {
	0%,
	100% {
		transform:
			translate3d(
				0,
				0,
				0
			);
	}

	50% {
		transform:
			translate3d(
				0,
				-13px,
				0
			);
	}
}

.float-1 {
	top: 180px;
	left: 7%;
}

.float-2 {
	top: 300px;
	left: 15%;
}

.float-3 {
	top: 560px;
	left: 6%;
}

.float-4 {
	top: 715px;
	left: 19%;
}

.float-5 {
	top: 185px;
	right: 8%;
}

.float-6 {
	top: 320px;
	right: 14%;
}

.float-7 {
	top: 540px;
	right: 6%;
}

.float-8 {
	top: 710px;
	right: 18%;
}

/* ================================================================
	CATEGORIES
	================================================================ */

.categories-section {
	padding:
		105px 24px 120px;

	background: #fff;
}

.section-inner {
	width:
		min(
			1280px,
			100%
		);

	margin:
		0 auto;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	gap: 30px;
}

.section-head h2 {
	max-width: 760px;

	margin: 0;

	font-size:
		clamp(
			38px,
			5vw,
			65px
		);

	line-height: 1.03;

	letter-spacing: -3px;

	font-weight: 900;
}

.section-head p {
	max-width: 460px;

	margin: 0;

	color:
		var(--text-secondary);

	font-size: 16px;
	line-height: 1.7;
}

.categories-grid {
	margin-top: 48px;

	display: grid;

	grid-template-columns:
		repeat(
			5,
			minmax(
				0,
				1fr
			)
		);

	gap: 16px;
}

.category-card {
	position: relative;

	min-height: 178px;

	padding: 19px;

	border-radius: 25px;

	border:
		1px solid
			rgba(0, 0, 0, .045);

	background:
		linear-gradient(
			145deg,
			#ffffff,
			#f9fbfd
		);

	box-shadow:
		0 13px 35px
			rgba(0, 0, 0, .045);

	overflow: hidden;

	cursor: pointer;

	transition:
		transform .2s ease,
		box-shadow .2s ease,
		border-color .2s ease;
}

.category-card:hover {
	transform:
		translateY(-6px);

	border-color:
		rgba(33, 150, 243, .18);

	box-shadow:
		0 23px 50px
			rgba(31, 101, 154, .12);
}

.category-card:focus-visible {
	outline:
		3px solid
			rgba(33, 150, 243, .22);

	outline-offset: 3px;
}

.category-icon {
	width: 57px;
	height: 57px;

	border-radius: 18px;

	display: grid;
	place-items: center;

	color: #fff;

	box-shadow:
		0 10px 20px
			rgba(0, 0, 0, .10);
}

.category-icon
.material-symbols-rounded {
	font-size: 28px;
}

.category-code {
	position: absolute;

	right: 16px;
	top: 16px;

	padding:
		5px 8px;

	border-radius: 999px;

	background:
		#f1f5f8;

	color: #8a939e;

	font-size: 10px;
	font-weight: 800;
}

.category-card h3 {
	margin:
		17px 0 0;

	padding-right: 35px;

	font-size: 15px;
	line-height: 1.35;
}

.category-arrow {
	position: absolute;

	right: 17px;
	bottom: 15px;

	width: 31px;
	height: 31px;

	display: grid;
	place-items: center;

	border-radius: 50%;

	background:
		rgba(33, 150, 243, .08);

	color:
		var(--blue);

	transition:
		transform .18s ease,
		background .18s ease;
}

.category-card:hover
.category-arrow {
	transform:
		translateX(3px);

	background:
		rgba(33, 150, 243, .13);
}

/* ================================================================
	CTA
	================================================================ */

.cta-section {
	padding:
		0 24px 110px;

	background: #fff;
}

.cta {
	position: relative;

	width:
		min(
			1280px,
			100%
		);

	min-height: 430px;

	margin:
		0 auto;

	padding: 70px;

	display: flex;
	align-items: center;

	border-radius: 42px;

	overflow: hidden;

	background:
		linear-gradient(
			135deg,
			#0d83e8,
			#2196f3 55%,
			#68c4ff
		);

	color: #fff;

	box-shadow:
		0 40px 100px
			rgba(33, 150, 243, .25);
}

.cta::before {
	content: "";

	position: absolute;

	width: 500px;
	height: 500px;

	right: -160px;
	top: -140px;

	border-radius: 50%;

	border:
		70px solid
			rgba(255, 255, 255, .10);
}

.cta-content {
	position: relative;

	z-index: 2;

	max-width: 720px;
}

.cta h2 {
	margin: 0;

	font-size:
		clamp(
			40px,
			6vw,
			68px
		);

	line-height: 1.02;

	letter-spacing: -3px;
}

.cta p {
	max-width: 610px;

	margin:
		20px 0 0;

	color:
		rgba(255, 255, 255, .84);

	font-size: 18px;
	line-height: 1.7;
}

.cta
.hero-actions {
	justify-content:
		flex-start;
}

.cta
.button-soft {
	background: #fff;

	color:
		var(--blue-dark);
}

/* ================================================================
	FOOTER
	================================================================ */

.footer {
	padding:
		86px 24px 72px;

	background:
		var(--footer-background);

	border-top:
		1px solid
			rgba(0, 0, 0, .025);
}

.footer-inner {
	width:
		min(
			1280px,
			100%
		);

	margin:
		0 auto;
}

.footer-grid {
	display: grid;

	grid-template-columns:
		minmax(
			280px,
			1.7fr
		)
		repeat(
			3,
			minmax(
				140px,
				1fr
			)
		);

	gap: 70px;
}

.footer-brand {
	max-width: 310px;
}

/* ================================================================
	FOOTER PNG LOGO
	================================================================ */

.footer-logo {
	display: inline-flex;
	align-items: center;

	text-decoration: none;

	flex-shrink: 0;
}

.footer-logo-image {
	display: block;

	width: auto;
	height: 38px;

	max-width: 155px;

	object-fit: contain;

	flex-shrink: 0;
}

.footer-socials {
	display: flex;
	align-items: center;

	gap: 16px;

	margin-top: 25px;
}

.footer-social {
	width: 31px;
	height: 31px;

	display: grid;
	place-items: center;

	border-radius: 9px;

	color: #9d998e;

	transition:
		color .18s ease,
		background .18s ease,
		transform .18s ease;
}

.footer-social:hover {
	color:
		var(--blue);

	background:
		rgba(33, 150, 243, .08);

	transform:
		translateY(-2px);
}

.footer-social
.material-symbols-rounded {
	font-size: 25px;
}

.footer-copyright {
	margin-top: 28px;

	color:
		var(--footer-text);

	font-size: 13px;
	line-height: 1.6;
}

.footer-column h3 {
	margin:
		4px 0 24px;

	font-size: 15px;
	font-weight: 800;

	color: #34332f;
}

.footer-links {
	display: flex;
	flex-direction: column;

	gap: 19px;
}

.footer-links a {
	color:
		var(--footer-text);

	font-size: 14px;
	font-weight: 500;

	line-height: 1.45;

	transition:
		color .18s ease,
		transform .18s ease;
}

.footer-links a:hover {
	color:
		var(--blue-dark);

	transform:
		translateX(3px);
}

.footer-bottom {
	margin-top: 65px;

	padding-top: 25px;

	border-top:
		1px solid
			rgba(0, 0, 0, .055);

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;

	color:
		var(--footer-text);

	font-size: 12px;
}

.footer-bottom-links {
	display: flex;
	align-items: center;

	flex-wrap: wrap;

	gap: 20px;
}

.footer-bottom-links a {
	transition:
		color .18s ease;
}

.footer-bottom-links a:hover {
	color:
		var(--blue-dark);
}

/* ================================================================
	RESPONSIVE
	================================================================ */

@media (max-width: 1180px) {
	.float-category {
		display: none;
	}

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

	.footer-grid {
		gap: 42px;
	}
}

@media (max-width: 900px) {
	.header {
		height: 72px;
	}

	.nav {
		width:
			calc(
				100% - 30px
			);
	}

	.nav-links {
		display: none;
	}

	.brand-logo {
		height: 39px;
		max-width: 150px;
	}

	.hero {
		min-height: auto;

		padding:
			125px 20px 80px;
	}

	.hero h1 {
		letter-spacing:
			-3px;
	}

	.hero-visual {
		transform:
			scale(.88);

		margin-top: 20px;
		margin-bottom: -20px;
	}

	.section-head {
		display: block;
	}

	.section-head p {
		margin-top: 18px;
	}

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

	.cta {
		min-height: 380px;

		padding:
			48px 35px;
	}

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

		gap:
			55px 40px;
	}

	.footer-brand {
		max-width: none;
	}
}

@media (max-width: 650px) {
	.nav-actions
	.button-soft {
		display: none;
	}

	.nav-actions
	.button {
		min-height: 42px;

		padding:
			0 16px;

		font-size: 13px;
	}

	.hero h1 {
		font-size: 47px;

		letter-spacing:
			-2.6px;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-visual {
		width: 360px;
		height: 360px;

		transform:
			scale(.83);
	}

	.hero-badge {
		right: -10px;
		bottom: 13px;
	}

	.categories-section {
		padding:
			75px 16px 85px;
	}

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

		gap: 11px;
	}

	.category-card {
		min-height: 160px;

		padding: 15px;

		border-radius: 21px;
	}

	.category-icon {
		width: 50px;
		height: 50px;

		border-radius: 15px;
	}

	.category-card h3 {
		font-size: 13px;
	}

	.cta-section {
		padding:
			0 16px 75px;
	}

	.cta {
		padding:
			42px 25px;

		border-radius: 30px;
	}

	.footer {
		padding:
			65px 20px 45px;
	}

	.footer-grid {
		grid-template-columns:
			1fr;

		gap: 42px;
	}

	.footer-logo-image {
		height: 36px;
		max-width: 145px;
	}

	.footer-bottom {
		margin-top: 48px;

		flex-direction:
			column;

		align-items:
			flex-start;
	}
}

@media (max-width: 420px) {
	.brand-logo {
		height: 36px;
		max-width: 135px;
	}

	.hero-actions {
		width: 100%;
	}

	.hero-actions
	.button {
		width: 100%;
	}

	.hero-visual {
		transform:
			scale(.72);

		margin-top: -5px;

		margin-bottom: -45px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;

		transition-duration: .01ms !important;

		scroll-behavior: auto !important;
	}
}