:root {
	color-scheme: light;
	--page-bg: #e8f5ff;
	--card-bg: rgba(255, 255, 255, 0.92);
	--text-main: #0d223d;
	--text-muted: #31506f;
	--accent: #00aeff;
	--accent-dark: #0879bc;
	--border: rgba(13, 34, 61, 0.08);
	--shadow: 0 28px 90px rgba(13, 34, 61, 0.16);
	font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top, rgba(0, 174, 255, 0.18), transparent 34%),
		linear-gradient(180deg, #f7fbff 0%, var(--page-bg) 100%);
	color: var(--text-main);
}

.page-shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px 20px;
}

.card {
	width: min(760px, 100%);
	padding: 48px 36px 56px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 28px;
	box-shadow: var(--shadow);
	text-align: center;
	backdrop-filter: blur(12px);
}

.card-form {
	width: min(860px, 100%);
}

.logo {
	width: min(264px, 50.4vw);
	height: auto;
	margin: 0 auto 20px;
	display: block;
}

.eyebrow {
	margin: 0 0 12px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-dark);
}

h1 {
	margin: 0;
	font-size: clamp(2.25rem, 4.5vw, 3.96rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.lead,
.body-copy {
	max-width: 38rem;
	margin-left: auto;
	margin-right: auto;
}

.lead {
	margin-top: 24px;
	font-size: clamp(1.1rem, 2.2vw, 1.45rem);
	line-height: 1.6;
	color: var(--text-muted);
}

.body-copy {
	margin-top: 14px;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-muted);
}

.body-copy-small {
	margin-top: 24px;
	font-size: 0.95rem;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	padding: 16px 26px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent) 0%, #36c7ff 100%);
	color: #06243d;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 18px 40px rgba(0, 174, 255, 0.28);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease,
		filter 160ms ease;
}

.cta:hover,
.cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 24px 48px rgba(0, 174, 255, 0.32);
	filter: saturate(1.05);
}

.cta:focus-visible {
	outline: 3px solid rgba(0, 174, 255, 0.3);
	outline-offset: 4px;
}

.hubspot-shell {
	margin-top: 32px;
	padding: 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(13, 34, 61, 0.08);
	text-align: left;
}

.inline-link,
.subtle-link {
	color: var(--accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible,
.subtle-link:hover,
.subtle-link:focus-visible {
	text-decoration: underline;
}

.subtle-link {
	display: inline-block;
	margin-top: 20px;
	font-size: 0.95rem;
}

.hubspot-form .hs-form-field {
	margin-bottom: 16px;
}

.hubspot-form label {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--text-main);
	font-size: 0.95rem;
	font-weight: 700;
}

.hubspot-form input,
.hubspot-form select,
.hubspot-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(13, 34, 61, 0.14);
	border-radius: 14px;
	background: #fff;
	color: var(--text-main);
	font: inherit;
}

.hubspot-form textarea {
	min-height: 140px;
	resize: vertical;
}

.hubspot-form input:focus,
.hubspot-form select:focus,
.hubspot-form textarea:focus {
	outline: 3px solid rgba(0, 174, 255, 0.18);
	border-color: rgba(0, 174, 255, 0.55);
}

.hubspot-form ul {
	margin: 6px 0 0;
	padding-left: 18px;
	color: #9a1a1a;
	font-size: 0.9rem;
}

.hubspot-form .hs-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 16px 26px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent) 0%, #36c7ff 100%);
	color: #06243d;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 18px 40px rgba(0, 174, 255, 0.28);
}

.hubspot-form .hs-button:hover,
.hubspot-form .hs-button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 24px 48px rgba(0, 174, 255, 0.32);
	filter: saturate(1.05);
}

.hubspot-form .submitted-message {
	color: var(--text-main);
	font-size: 1rem;
	line-height: 1.7;
}

@media (max-width: 640px) {
	.page-shell {
		padding: 20px 16px;
	}

	.card {
		padding: 32px 22px 40px;
		border-radius: 24px;
	}

	.hubspot-shell {
		padding: 18px;
	}

	h1 {
		font-size: clamp(2.1rem, 10vw, 3.2rem);
	}

	.lead {
		margin-top: 20px;
	}

	.cta {
		width: 100%;
	}
}
