* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	color: #111827;
	background-color: #f5f7fb;
	line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible {
	outline: 2px solid #007aff;
	outline-offset: 3px;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(10px);
	background-color: rgba(245, 247, 251, 0.9);
	border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: #0f172a;
}

.brand-logo {
	width: 32px;
	height: 32px;
	border-radius: 8px;
}

.nav ul {
	display: flex;
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.nav a {
	font-size: 0.95rem;
	font-weight: 500;
	color: #1f2937;
	padding-bottom: 0.15rem;
	border-bottom: 2px solid transparent;
}

.nav a:hover {
	border-color: #007aff;
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
}

.section {
	padding: 3.5rem 0;
}

.hero {
	padding-top: 4.5rem;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 3rem;
	align-items: center;
}

.hero-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-size: 0.78rem;
	font-weight: 600;
	color: #007aff;
	margin: 0 0 0.75rem;
}

.hero h1 {
	font-size: clamp(2rem, 3vw + 1.4rem, 2.75rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	color: #0f172a;
}

.hero-tagline {
	margin: 0 0 1.75rem;
	font-size: 1.02rem;
	color: #374151;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: space-between;
	margin-bottom: 1.75rem;
}

.stat {
	min-width: 0;
	flex: 1 1 0;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	background: #ffffff;
	border: 1px solid rgba(148, 163, 184, 0.5);
}

.stat-number {
	font-weight: 600;
	font-size: 1.1rem;
	color: #111827;
}

.stat-label {
	font-size: 0.82rem;
	color: #6b7280;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.3rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease,
		box-shadow 0.15s ease, border-color 0.15s ease;
}

.button.primary {
	background: #007aff;
	color: #ffffff;
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.button.primary:hover {
	background: #0060d6;
	box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
}

.button.secondary {
	background: #e5f1ff;
	color: #007aff;
	border-color: #c2dcff;
}

.button.secondary:hover {
	background: #d6e8ff;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-illustration {
	width: 220px;
	height: auto;
	filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.3));
}

h2 {
	font-size: 1.6rem;
	margin: 0 0 0.75rem;
	color: #0f172a;
}

h3 {
	font-size: 1.1rem;
	margin: 0 0 0.4rem;
	color: #111827;
}

.section-intro {
	margin: 0 0 1.75rem;
	color: #374151;
}

.section-closing {
	margin-top: 2rem;
	color: #4b5563;
}

.section-body {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
}

.two-column {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 2.5rem;
}

.section-text p {
	margin-top: 0;
	margin-bottom: 1.1rem;
	color: #374151;
}

.section-aside {
	min-width: 220px;
}

.aside-heading {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
}

.pill-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pill-list li {
	display: inline-flex;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: #e5f1ff;
	color: #007aff;
	font-size: 0.85rem;
}

.bullet-list {
	margin: 0;
	padding-left: 1.2rem;
	color: #374151;
}

.bullet-list li + li {
	margin-top: 0.4rem;
}

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

.card {
	background: #ffffff;
	border-radius: 1rem;
	padding: 1.25rem 1.3rem 1.3rem;
	border: 1px solid rgba(148, 163, 184, 0.6);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.card p {
	margin: 0.25rem 0 0;
	font-size: 0.96rem;
	color: #4b5563;
}

.section-contact {
	padding-bottom: 4rem;
}

.contact-details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.site-footer {
	border-top: 1px solid rgba(148, 163, 184, 0.4);
	padding: 1.2rem 0 1.5rem;
	font-size: 0.85rem;
	color: #6b7280;
	background: rgba(15, 23, 42, 0.02);
}

.site-footer p {
	margin: 0;
}

@media (max-width: 768px) {
	.header-inner {
		padding-inline: 1rem;
		position: relative;
	}

	.hero-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.25rem;
	}

	.hero {
		padding-top: 3.25rem;
	}

	.hero-visual {
		order: -1;
		display: none;
	}

	.section {
		padding: 3rem 0;
	}

	.two-column {
		grid-template-columns: minmax(0, 1fr);
	}

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

	.nav-toggle-label {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		width: 32px;
		height: 32px;
		margin-left: auto;
		cursor: pointer;
	}

	.nav-toggle-label span {
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 999px;
		background: #111827;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 1rem;
		right: 1rem;
		margin-top: 0.4rem;
		background: #f5f7fb;
		border-radius: 0.75rem;
		border: 1px solid rgba(148, 163, 184, 0.6);
		box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
		padding: 0.6rem 0.85rem;
		display: none;
	}

	.nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
		font-size: 0.95rem;
		margin: 0;
	}

	.nav li {
		width: 100%;
	}

	.nav a {
		display: block;
		width: 100%;
		padding: 0.45rem 0.4rem;
		border-bottom: none;
		border-radius: 0.45rem;
	}

	.nav a:hover,
	.nav a:focus-visible {
		background-color: rgba(15, 23, 42, 0.04);
		border-color: transparent;
	}

	.nav a:active {
		background-color: rgba(15, 23, 42, 0.07);
	}

	.nav-toggle:checked ~ .nav {
		display: block;
	}

	.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
		transform: translateY(3px) rotate(45deg);
	}

	.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
		transform: translateY(-3px) rotate(-45deg);
	}
}

@media (max-width: 480px) {
	.header-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 0.35rem;
	}

	.nav ul {
		padding-bottom: 0.2rem;
	}

	.hero h1 {
		font-size: 1.9rem;
	}

	.hero-tagline {
		font-size: 0.98rem;
	}

	.stat {
		min-width: 0;
		flex: 1 1 45%;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

