:root {
	--lht-navy: #102542;
	--lht-blue: #1f4c73;
	--lht-mint: #7bc6cc;
	--lht-paper: #f5f8fb;
	--lht-ink: #20303f;
}

body {
	margin: 0;
	font-family: "Segoe UI", sans-serif;
	background: linear-gradient(180deg, #eef5fb 0%, #ffffff 38%);
	color: var(--lht-ink);
}

.site-shell {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header,
.site-footer {
	background: rgba(16, 37, 66, 0.96);
	color: #fff;
}

.site-header .site-shell,
.site-footer .site-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}

.site-kicker {
	margin: 0 0 6px;
	letter-spacing: 0.12em;
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.75;
}

.site-brand {
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	text-decoration: none;
}

.site-nav ul {
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav a {
	color: #fff;
	text-decoration: none;
}

.site-main {
	padding-bottom: 48px;
}

.hero-panel {
	padding: 52px 0 32px;
}

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

.hero-grid h1 {
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.05;
	margin: 0 0 16px;
}

.hero-card,
.content-card {
	padding: 28px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 45px rgba(16, 37, 66, 0.08);
}

.hero-card {
	background: linear-gradient(140deg, var(--lht-navy), var(--lht-blue));
	color: #fff;
}

@media (max-width: 860px) {
	.site-header .site-shell,
	.hero-grid,
	.content-grid {
		grid-template-columns: 1fr;
	}

	.site-header .site-shell {
		gap: 16px;
	}
}
