@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
	--bg: #eef3f8;
	--bg-strong: #0e1d2f;
	--surface: #ffffff;
	--surface-soft: #f8fbff;
	--text: #1d2430;
	--text-soft: #4e5b6e;
	--primary: #0f8a7a;
	--primary-2: #1269d3;
	--accent: #ff7a18;
	--line: rgba(16, 26, 43, 0.12);
	--shadow: 0 15px 40px rgba(7, 22, 44, 0.14);
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--max: 1200px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
	background: radial-gradient(circle at 20% -10%, #d5ecff 0%, transparent 40%),
		radial-gradient(circle at 95% 0%, #fff3d7 0%, transparent 35%),
		linear-gradient(180deg, #f8fbff 0%, #ecf2f8 45%, #f7fbff 100%);
	color: var(--text);
	line-height: 1.65;
	overflow-x: hidden;
}

.noise {
	pointer-events: none;
	position: fixed;
	inset: 0;
	opacity: 0.07;
	background-image: url('../images/noise.svg');
	z-index: -1;
}

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

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

.container {
	width: min(var(--max), 94%);
	margin: 0 auto;
}

.topbar {
	background: linear-gradient(90deg, #052646 0%, #0d4669 100%);
	color: #d8e8ff;
	font-size: 0.9rem;
	padding: 0.55rem 0;
}

.topbar .container {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(14px);
	background: rgba(248, 251, 255, 0.87);
	border-bottom: 1px solid var(--line);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	letter-spacing: 0.03em;
}

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

.nav-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.nav-links a {
	font-weight: 500;
	color: #2b3747;
	padding: 0.35rem 0.4rem;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	transition: width 0.32s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.btn {
	border: none;
	border-radius: 999px;
	padding: 0.7rem 1.2rem;
	font-weight: 600;
	font-family: 'Sora', sans-serif;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
	color: #fff;
	background: linear-gradient(105deg, var(--primary) 10%, var(--primary-2) 100%);
	box-shadow: 0 10px 28px rgba(18, 105, 211, 0.3);
}

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

.hero {
	padding: 4.5rem 0 3rem;
	position: relative;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: stretch;
}

.hero-copy,
.hero-side {
	position: relative;
	min-height: 100%;
	border-radius: 28px;
	padding: 1.4rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(246, 250, 255, 0.92) 100%);
	border: 1px solid rgba(16, 26, 43, 0.08);
	box-shadow: 0 18px 40px rgba(8, 26, 49, 0.08);
	overflow: hidden;
}

.hero-copy::before,
.hero-side::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 138, 122, 0.08) 0%, transparent 45%, rgba(18, 105, 211, 0.08) 100%);
	pointer-events: none;
}

.hero-copy > *,
.hero-side > * {
	position: relative;
	z-index: 1;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	background: #dff6f3;
	color: #0a6f63;
	padding: 0.25rem 0.8rem;
	font-size: 0.84rem;
	font-weight: 600;
}

h1,
h2,
h3,
h4 {
	font-family: 'Sora', sans-serif;
	line-height: 1.2;
	margin: 0;
}

h1 {
	font-size: clamp(2rem, 4vw, 3.3rem);
	margin-top: 1rem;
}

.lead {
	margin-top: 1.15rem;
	color: var(--text-soft);
	font-size: 1.06rem;
}

.hero-actions {
	margin-top: 1.6rem;
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
}

.hero-card {
	border-radius: var(--radius-lg);
	padding: 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 247, 255, 0.94) 100%);
	border: 1px solid rgba(16, 26, 43, 0.1);
	box-shadow: var(--shadow);
	transform: perspective(1200px) rotateY(-4deg);
}

.hero-side {
	display: grid;
	grid-template-rows: auto 1fr auto;
	align-content: stretch;
	gap: 1rem;
}

.hero-card img {
	border-radius: 18px;
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: contain;
}

.hero-side-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-content: start;
	gap: 0.9rem;
}

.hero-note,
.hero-contact-card {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(16, 26, 43, 0.09);
	border-radius: 18px;
	padding: 1rem;
	box-shadow: 0 10px 28px rgba(7, 22, 44, 0.08);
	backdrop-filter: blur(8px);
}

.hero-contact-card {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, rgba(12, 52, 79, 0.96) 0%, rgba(17, 72, 119, 0.96) 52%, rgba(15, 138, 122, 0.96) 100%);
	color: #eef8ff;
}

.hero-note h3,
.hero-contact-card h3 {
	font-size: 1rem;
	margin-top: 0.2rem;
}

.hero-note p,
.hero-contact-card p {
	margin: 0.45rem 0 0;
	color: var(--text-soft);
	font-size: 0.95rem;
}

.hero-contact-card p {
	color: #e4f2ff;
}

.hero-note-label {
	display: inline-block;
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: #0f8a7a;
}

.hero-contact-card .hero-note-label {
	color: #d8f7ef;
}

.hero-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-self: end;
}

.hero-pill-row span {
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(16, 26, 43, 0.08);
	font-size: 0.88rem;
	font-weight: 600;
	color: #27425d;
	box-shadow: 0 8px 22px rgba(7, 22, 44, 0.06);
}

.stat-row {
	margin-top: 1.2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}

.stat-row-layered {
	position: relative;
	align-items: start;
	padding-top: 0.4rem;
}

.stat {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 1rem;
	box-shadow: 0 10px 26px rgba(7, 22, 44, 0.06);
	position: relative;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 58%);
	pointer-events: none;
}

.stat-row-layered .stat:nth-child(1) {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(223, 246, 243, 0.95) 100%);
	transform: translateY(18px) rotate(-2deg);
	box-shadow: 0 18px 34px rgba(15, 138, 122, 0.12);
}

.stat-row-layered .stat:nth-child(2) {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(225, 237, 255, 0.96) 100%);
	transform: translateY(0) scale(1.03);
	box-shadow: 0 22px 42px rgba(18, 105, 211, 0.16);
	z-index: 2;
}

.stat-row-layered .stat:nth-child(3) {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 230, 0.96) 100%);
	transform: translateY(26px) rotate(2deg);
	box-shadow: 0 18px 34px rgba(255, 122, 24, 0.13);
}

.stat-row-layered .stat:hover {
	transform: translateY(-6px) scale(1.02);
	border-color: rgba(18, 105, 211, 0.18);
	box-shadow: 0 24px 46px rgba(7, 22, 44, 0.14);
}

.stat strong {
	display: block;
	font-family: 'Sora', sans-serif;
	font-size: 1.45rem;
	color: #0e2a49;
	position: relative;
	z-index: 1;
}

.stat span {
	position: relative;
	z-index: 1;
}

section {
	padding: 3.4rem 0;
}

.section-head {
	max-width: 760px;
	margin-bottom: 1.8rem;
}

.section-head p {
	color: var(--text-soft);
}

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

.card {
	background: var(--surface);
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	padding: 1.2rem;
	box-shadow: 0 8px 24px rgba(6, 20, 40, 0.06);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(6, 20, 40, 0.14);
}

.icon {
	width: 40px;
	height: 40px;
	margin-bottom: 0.7rem;
}

.timeline {
	border-left: 2px solid rgba(15, 138, 122, 0.35);
	padding-left: 1.2rem;
	display: grid;
	gap: 1rem;
}

.timeline article {
	background: #ffffffd9;
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	padding: 1rem;
	position: relative;
}

.timeline article::before {
	content: '';
	position: absolute;
	left: -1.55rem;
	top: 1rem;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.2);
}

.cta {
	background: linear-gradient(135deg, #0c344f 0%, #114877 50%, #0f8a7a 100%);
	color: #f3fbff;
	border-radius: 28px;
	padding: 2.2rem;
	box-shadow: 0 18px 40px rgba(5, 26, 52, 0.26);
}

.cta p {
	color: #e4f2ff;
}

.footer {
	margin-top: 3rem;
	background: #081726;
	color: #c5d6e8;
	padding: 2.5rem 0 1.4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 1rem;
}

.footer a {
	color: #e6f2ff;
}

.footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.4rem;
}

.copyright {
	margin-top: 1.6rem;
	border-top: 1px solid rgba(206, 224, 245, 0.2);
	padding-top: 1rem;
	font-size: 0.92rem;
}

.legal-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 1.2rem;
	align-items: start;
}

.legal-nav {
	position: sticky;
	top: 90px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	padding: 1rem;
}

.legal-nav a {
	display: block;
	padding: 0.35rem 0;
	color: #27425d;
	font-size: 0.93rem;
}

.legal-content {
	background: var(--surface);
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	padding: 1.3rem;
}

.legal-content h2 {
	margin-top: 1.8rem;
}

.legal-content ul {
	margin-top: 0.5rem;
	margin-bottom: 0.8rem;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
}

.reveal.visible {
	opacity: 1;
	transform: none;
	transition: opacity 0.72s ease, transform 0.72s ease;
}

@keyframes floaty {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.float {
	animation: floaty 4.6s ease-in-out infinite;
}

@media (max-width: 1024px) {
	.hero-grid,
	.legal-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy,
	.hero-side {
		min-height: auto;
	}

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

	.legal-nav {
		position: static;
	}

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

@media (max-width: 680px) {
	.nav-wrap {
		min-height: 68px;
	}

	.nav-links {
		width: 100%;
		justify-content: space-between;
		gap: 0.55rem;
	}

	.cards,
	.stat-row {
		grid-template-columns: 1fr;
	}

	.stat-row-layered .stat:nth-child(1),
	.stat-row-layered .stat:nth-child(2),
	.stat-row-layered .stat:nth-child(3) {
		transform: none;
	}

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

	.hero {
		padding-top: 3.2rem;
	}
}
