:root {
	--primary: #037494;
	--primary-dark: #025873;
	--text: #0f1b2a;
	--muted: #526374;
	--surface: #ffffff;
	--surface-alt: #f3f8fb;
	--border: #dbe8ef;
	--accent: #d4f2ff;
	--shadow-soft: 0 20px 60px rgba(3, 116, 148, 0.15);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 12px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	color: var(--text);
	background: radial-gradient(circle at top, rgba(3, 116, 148, 0.1), transparent 55%) no-repeat,
		radial-gradient(circle at 15% 20%, rgba(3, 116, 148, 0.05), transparent 40%) no-repeat,
		var(--surface-alt);
	margin: 0;
	line-height: 1.6;
	min-height: 100vh;
}

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

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

p {
	margin: 0 0 1rem;
	color: var(--muted);
}

section {
	padding: 80px 0;
}

.container {
	width: min(1200px, 92vw);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(3, 116, 148, 0.08);
	z-index: 20;
}

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

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--text);
}

.brand img {
	width: 36px;
	height: 36px;
	border-radius: 12px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-weight: 500;
	color: var(--muted);
}

.site-nav a {
	position: relative;
	padding-bottom: 4px;
}

.site-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 999px;
	border: none;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(3, 116, 148, 0.25);
}

.btn.secondary {
	background: rgba(3, 116, 148, 0.12);
	color: var(--primary);
	box-shadow: none;
}

.ghost-link {
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid rgba(3, 116, 148, 0.2);
	font-weight: 600;
	color: var(--primary);
}

.hero {
	padding: 110px 0 80px;
	background: radial-gradient(circle at 20% 20%, rgba(3, 116, 148, 0.25), transparent 60%),
		linear-gradient(135deg, #f2fbff 0%, #ffffff 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 60px;
	align-items: center;
}

.hero-copy h1 {
	font-size: clamp(2.6rem, 5vw, 3.8rem);
	line-height: 1.1;
	margin: 0 0 24px;
	color: var(--text);
}

.hero-copy .lead {
	font-size: 1.15rem;
	color: var(--muted);
	margin-bottom: 24px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 18px;
}

.hero-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	gap: 14px;
}

.hero-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted);
	font-weight: 500;
}

.hero-list li i {
	color: var(--primary);
	margin-top: 2px;
}

.cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.download-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.download-badges a {
	display: inline-flex;
	padding: 0;
	border-radius: 14px;
	background: #000;
}

.download-badges img {
	height: 52px;
	width: auto;
}

.hero-media {
	position: relative;
}

.hero-media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	width: 100%;
}

.data-badge {
	position: absolute;
	top: -24px;
	right: -10px;
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 18px;
	box-shadow: var(--shadow-soft);
	max-width: 230px;
}

.data-badge strong {
	display: block;
	font-size: 2rem;
	color: var(--primary);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
}

.stat-card {
	padding: 28px;
	background: var(--surface);
	border-radius: var(--radius-md);
	border: 1px solid rgba(3, 116, 148, 0.1);
	box-shadow: 0 10px 30px rgba(3, 116, 148, 0.08);
}

.stat-card h3 {
	margin: 0;
	font-size: 2rem;
	color: var(--primary);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.feature-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 26px;
	border: 1px solid rgba(3, 116, 148, 0.12);
	box-shadow: 0 16px 35px rgba(2, 88, 115, 0.08);
}

.feature-card h3 {
	margin: 0 0 12px;
	font-size: 1.2rem;
}

.feature-card p {
	margin: 0;
}

.highlight {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 56px;
	border: 1px solid rgba(3, 116, 148, 0.1);
	box-shadow: var(--shadow-soft);
}

.verification-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.step {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 24px;
	border: 1px solid var(--border);
}

.step span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(3, 116, 148, 0.12);
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 16px;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(3, 116, 148, 0.1);
	color: var(--primary);
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.privacy-panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.panel {
	padding: 28px;
	border-radius: var(--radius-md);
	background: var(--surface);
	border: 1px solid rgba(3, 116, 148, 0.12);
}

.panel ul {
	padding-left: 18px;
	margin: 12px 0 0;
	color: var(--muted);
}

.subscription-card {
	background: linear-gradient(135deg, #025873, #037494);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 48px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	align-items: center;
}

.subscription-card p {
	color: rgba(255, 255, 255, 0.85);
}

.support-card {
	padding: 36px;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px solid rgba(3, 116, 148, 0.1);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.support-card .btn {
	box-shadow: none;
}

.quote {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--text);
	margin: 0;
}

.content-page {
	padding-top: 80px;
	padding-bottom: 100px;
}

.page-header {
	text-align: center;
	margin-bottom: 56px;
}

.page-header h1 {
	font-size: clamp(2.2rem, 4vw, 3rem);
	margin-bottom: 12px;
}

.meta {
	color: var(--muted);
	font-size: 0.95rem;
}

.content-section {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 32px;
	border: 1px solid rgba(3, 116, 148, 0.1);
	margin-bottom: 24px;
	box-shadow: 0 10px 25px rgba(3, 116, 148, 0.05);
}

.content-section h2 {
	margin-top: 0;
	color: var(--text);
}

.content-section ul {
	padding-left: 18px;
	color: var(--muted);
}

.site-footer {
	background: #010b10;
	color: rgba(255, 255, 255, 0.8);
	padding: 80px 0 40px;
	margin-top: 60px;
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-brand img {
	width: 42px;
	height: 42px;
}

.footer-links h4 {
	margin: 0 0 16px;
	font-size: 0.95rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer-links a {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 20px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.support-email {
	font-weight: 600;
	color: #fff;
}

.cookie-banner {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 340px;
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 20px;
	border: 1px solid rgba(3, 116, 148, 0.15);
	box-shadow: var(--shadow-soft);
	z-index: 30;
	display: none;
}

.cookie-banner p {
	font-size: 0.9rem;
	margin-bottom: 12px;
}

.cookie-banner button {
	width: 100%;
}

.cookie-banner.is-visible {
	display: block;
}

.cookie-banner.is-hidden {
	display: none;
}

.badge {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.faq-card {
	padding: 26px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(3, 116, 148, 0.1);
	background: var(--surface);
}

.faq-card h3 {
	margin-top: 0;
}

@media (max-width: 900px) {
	.site-nav {
		position: fixed;
		top: 80px;
		right: 5vw;
		left: 5vw;
		background: var(--surface);
		flex-direction: column;
		padding: 24px;
		border: 1px solid var(--border);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-soft);
		display: none;
	}

	.site-nav.is-open {
		display: flex;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.nav-cta {
		display: none;
	}

	.hero {
		padding-top: 90px;
	}

	.subscription-card {
		padding: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn,
	.site-nav a::after {
		transition: none;
	}
}

