:root {
	--bg: #f6fbff;
	--ink: #16202a;
	--muted: #5f6f7d;
	--line: #d9e5ef;
	--panel: #ffffff;
	--blue: #0875d1;
	--blue-dark: #07589c;
	--green: #4fb64f;
	--orange: #ff9f1c;
	--shadow: 0 18px 60px rgba(28, 75, 116, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
}

body {
	margin: 0;
	min-height: 100vh;
}

a {
	color: var(--blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.site {
	min-height: 100vh;
	background:
		radial-gradient(circle at 12% 8%, rgba(79, 182, 79, 0.2), transparent 30%),
		radial-gradient(circle at 85% 16%, rgba(255, 159, 28, 0.18), transparent 28%),
		linear-gradient(180deg, #eff8ff 0%, #f9fcff 48%, #ffffff 100%);
}

.nav,
.wrap {
	width: min(1080px, calc(100% - 40px));
	margin: 0 auto;
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-weight: 800;
	text-decoration: none;
}

.brand img {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(8, 117, 209, 0.16);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 700;
}

.nav-links a {
	color: var(--ink);
	text-decoration: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--blue);
	border-radius: 8px;
	background: var(--blue);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(8, 117, 209, 0.22);
}

.button.secondary {
	background: #ffffff;
	color: var(--blue);
	box-shadow: none;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	gap: 42px;
	align-items: center;
	padding: 56px 0 70px;
}

.hero h1,
.page-title h1 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.96;
	letter-spacing: 0;
}

.hero p,
.page-title p {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 18px;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.hero-art {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(8, 117, 209, 0.16);
	border-radius: 8px;
	background: #dff3ff;
	box-shadow: var(--shadow);
	aspect-ratio: 1;
}

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

.section {
	padding: 58px 0;
	border-top: 1px solid var(--line);
}

.section h2 {
	margin: 0 0 18px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.05;
	letter-spacing: 0;
}

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

.card {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	box-shadow: 0 8px 28px rgba(22, 32, 42, 0.06);
}

.card h3 {
	margin: 0 0 8px;
	font-size: 19px;
	line-height: 1.2;
}

.card p,
.copy p,
.copy li {
	color: var(--muted);
}

.copy {
	max-width: 800px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 8px 28px rgba(22, 32, 42, 0.05);
}

.copy h2 {
	margin-top: 30px;
	font-size: 26px;
}

.copy h2:first-child {
	margin-top: 0;
}

.copy p,
.copy ul {
	margin: 12px 0 0;
}

.copy ul {
	padding-left: 22px;
}

.page-title {
	padding: 48px 0 28px;
}

.footer {
	padding: 34px 0 46px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
}

.footer .wrap {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

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

	.hero {
		grid-template-columns: 1fr;
		padding-top: 28px;
	}

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

	.copy {
		padding: 22px;
	}
}
