@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");
@import url("fontawesome-all.min.css");

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

html {
	box-sizing: border-box;
}

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

body {
	-webkit-text-size-adjust: none;
	background: #eef6ff;
	color: #0e2238;
	font-family: 'Inter', sans-serif;
	font-size: 14pt;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.65;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	animation: none !important;
	transition: none !important;
}

ol, ul {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid #005fcc;
	outline-offset: 4px;
}

.skip-link,
.sr-only {
	position: absolute;
}

.skip-link {
	background: #005fcc;
	border-radius: 0.75rem;
	color: #ffffff;
	left: 1rem;
	padding: 0.8rem 1rem;
	top: 1rem;
	transform: translateY(-140%);
	transition: transform 0.2s ease;
	z-index: 10;
}

.skip-link:focus {
	transform: translateY(0);
}

.sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	white-space: nowrap;
	width: 1px;
}

.icon {
	position: relative;
	text-decoration: none;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-rendering: auto;
	text-transform: none !important;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

.icon > .label {
	display: none;
}

@keyframes wrapper {
	0% { opacity: 0; transform: translateY(18px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes float-bg {
	0% { transform: scale(1) translate3d(0, 0, 0); }
	50% { transform: scale(1.08) translate3d(-1.5%, 1.5%, 0); }
	100% { transform: scale(1) translate3d(0, 0, 0); }
}

#wrapper {
	animation: wrapper 1.2s ease forwards;
	min-height: 100vh;
	opacity: 0;
	position: relative;
}

#bg,
#overlay {
	inset: 0;
	position: fixed;
}

#bg {
	animation: float-bg 22s ease-in-out infinite;
	background:
		radial-gradient(circle at 14% 18%, rgba(255, 137, 103, 0.40), transparent 24%),
		radial-gradient(circle at 82% 14%, rgba(77, 204, 255, 0.34), transparent 22%),
		radial-gradient(circle at 76% 78%, rgba(129, 255, 196, 0.24), transparent 20%),
		radial-gradient(circle at 38% 84%, rgba(255, 222, 106, 0.20), transparent 18%),
		linear-gradient(135deg, #f5fbff 0%, #dff1ff 42%, #c5e7ff 100%);
	transform-origin: center;
}

#overlay {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(207, 232, 255, 0.34)),
		radial-gradient(circle at center, rgba(255, 255, 255, 0.42), transparent 58%);
}

#main {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
	min-height: 100vh;
	padding: 2rem 2rem 3rem 2rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

#header {
	animation: wrapper 1s 0.25s ease forwards;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 32px;
	box-shadow: 0 28px 70px rgba(77, 138, 201, 0.18);
	max-width: 1080px;
	opacity: 0;
	padding: 3.5rem;
	position: relative;
	text-align: left;
	width: min(1080px, 100%);
}

.detail-band {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1.2fr 1fr 1fr;
	max-width: 1080px;
	width: min(1080px, 100%);
}

.detail-panel {
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.56);
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 24px;
	box-shadow: 0 20px 48px rgba(77, 138, 201, 0.14);
	padding: 1.5rem;
	text-align: left;
}

.detail-panel-feature {
	background:
		linear-gradient(145deg, rgba(255, 179, 92, 0.26), rgba(95, 213, 255, 0.16)),
		rgba(255, 255, 255, 0.68);
}

.panel-kicker {
	color: #005b8c;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.detail-panel h2,
.detail-panel h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1.08;
	margin-top: 0.7rem;
}

.detail-panel p {
	color: rgba(26, 54, 84, 0.82);
	font-size: 0.98rem;
	margin-top: 0.9rem;
}

.detail-list,
.metric-list {
	display: grid;
	gap: 0.9rem;
	margin-top: 1rem;
}

.detail-list li,
.metric-list li {
	color: rgba(14, 34, 56, 0.9);
	font-size: 0.96rem;
	padding-top: 0.9rem;
	position: relative;
}

.detail-list li:before,
.metric-list li:before {
	background: linear-gradient(90deg, rgba(89, 227, 255, 0.92), rgba(255, 210, 74, 0.82));
	border-radius: 999px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 35%;
	top: 0;
}

.metric-list strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
}

.metric-list span {
	color: rgba(28, 63, 98, 0.88);
	display: block;
	font-size: 0.92rem;
	margin-top: 0.3rem;
}

#header:before {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 38%);
	border-radius: inherit;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

#header > * {
	position: relative;
	z-index: 1;
}

.eyebrow {
	color: #005b8c;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.hero-grid {
	align-items: stretch;
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
}

#header h1 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.92;
	max-width: 7ch;
}

.lead {
	color: #102846;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.35;
	margin-top: 1.25rem;
	max-width: 24ch;
}

.summary {
	color: rgba(20, 46, 74, 0.94);
	font-size: 1.02rem;
	margin-top: 1rem;
	max-width: 58ch;
}

.highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.75rem;
}

.highlights li {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(124, 192, 235, 0.36);
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(106, 167, 219, 0.12);
	color: rgba(18, 45, 73, 0.92);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.9rem 1.1rem;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.button {
	align-items: center;
	border: 0;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.01em;
	padding: 0.95rem 1.4rem;
}

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

.button.primary {
	background: linear-gradient(135deg, #ff8c5d 0%, #ffd26f 100%);
	box-shadow: 0 18px 35px rgba(255, 140, 93, 0.25);
	color: #08111f;
}

.button.secondary {
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	color: #f8fbff;
}

.signal-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(243,250,255,0.52));
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	min-height: 100%;
	padding: 1.75rem;
}

.signal-label {
	color: #005b8c;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.signal-card h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.15;
	margin-top: 0.65rem;
}

.signal-card p {
	color: rgba(20, 46, 74, 0.92);
	font-size: 0.98rem;
	margin-top: 0.95rem;
}

#footer {
	color: rgba(20, 46, 74, 0.88);
	font-size: 0.9rem;
	line-height: 1;
	padding: 0 2rem 2rem 2rem;
	position: relative;
	text-align: center;
	width: 100%;
}

.footer-links {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: #005b8c;
	font-size: 0.92rem;
	font-weight: 600;
	text-shadow: none;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.footer-links a:hover {
	color: #003f67;
}

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

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

	#bg {
		transform: none;
	}
}

@media screen and (max-width: 980px) {
	body {
		font-size: 12pt;
	}

	#header {
		padding: 2.5rem;
	}

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

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

@media screen and (max-width: 736px) {
	#main {
		justify-content: flex-start;
		padding: 1rem;
	}

	#header {
		border-radius: 24px;
		margin: 1rem 0 4rem 0;
		padding: 1.5rem;
	}

	.eyebrow {
		letter-spacing: 0.16em;
	}

	#header h1 {
		font-size: 2.9rem;
	}

	.lead {
		font-size: 1.05rem;
	}

	.actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.detail-panel {
		padding: 1.25rem;
	}

	.detail-panel h2 {
		font-size: 1.35rem;
	}
}
