/*
 * LaunchLine Vela - main theme stylesheet
 */

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap");

/* ==========================================================================
   Base
   ========================================================================== */

body {
	background: #f8fafc;
	color: #0b1e38;
	font-family: "DM Sans", system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

::selection {
	background: #19c2b0;
	color: #0b1e38;
}

.llv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.llv-eyebrow {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #0b8b82;
	font-weight: 500;
}

.llv-eyebrow--dark {
	color: #19c2b0;
}

/* Responsive layout helpers shared across sections. */
@media (max-width: 820px) {
	[data-stack-mobile="true"] {
		flex-direction: column !important;
		align-items: stretch !important;
	}

	[data-grid-mobile="1"] {
		grid-template-columns: 1fr !important;
	}

	[data-grid-mobile="2"] {
		grid-template-columns: 1fr 1fr !important;
	}

	[data-hide-mobile="true"] {
		display: none !important;
	}

	[data-pad-mobile] {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	[data-section-mobile] {
		padding-top: 72px !important;
		padding-bottom: 72px !important;
	}
}

@media (max-width: 560px) {
	[data-grid-mobile="2"] {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================================
   Header
   ========================================================================== */

.llv-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(248, 250, 252, 0.92);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid rgba(20, 48, 91, 0.08);
}

.llv-header__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.llv-header__logo {
	display: flex;
	align-items: center;
}

.llv-header__logo-img {
	height: 44px;
	width: auto;
	display: block;
}

.llv-header__nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.launchline-primary-menu a {
	font-size: 14.5px;
	color: #14305b;
	font-weight: 500;
	text-decoration: none;
}

.llv-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #14305b;
	color: #fff;
	padding: 11px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
}

.llv-header__cta-arrow {
	display: inline-block;
	transform: translateY(-1px);
}

@media (max-width: 991.98px) {
	.llv-header [data-hide-mobile="true"] {
		display: none;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.llv-footer {
	background: #0b1e38;
	color: #c8d4e6;
	padding: 80px 0 40px;
}

.llv-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.llv-footer__grid {
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	row-gap: 40px;
}

.llv-footer__logo {
	margin-bottom: 22px;
}

.llv-footer__logo-img {
	height: 44px;
	width: auto;
	display: block;
}

.llv-footer__tagline {
	font-size: 14.5px;
	line-height: 1.6;
	color: #b6c5dc;
	margin: 0 0 16px;
	max-width: 380px;
}

.llv-footer__legal {
	font-size: 13px;
	line-height: 1.6;
	color: #8aa0c0;
	margin: 0;
	max-width: 380px;
}

.llv-footer__heading {
	font-size: 11.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #19c2b0;
	margin-bottom: 18px;
	font-weight: 600;
}

.llv-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.llv-footer__list a,
.llv-footer__email a {
	font-size: 14.5px;
	color: #c8d4e6;
	text-decoration: none;
}

.llv-footer__email {
	margin: 0 0 18px;
}

.llv-footer__email a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 2px;
}

.llv-footer__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(25, 194, 176, 0.14);
	border: 1px solid rgba(25, 194, 176, 0.4);
	color: #19c2b0;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.llv-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 32px;
	flex-wrap: wrap;
}

.llv-footer__copyright {
	font-size: 12.5px;
	color: #8aa0c0;
}

.llv-footer__bottom-links {
	display: flex;
	gap: 24px;
}

.llv-footer__bottom-links a {
	font-size: 12.5px;
	color: #8aa0c0;
	text-decoration: none;
}

/* ==========================================================================
   Home: Hero
   ========================================================================== */

.llv-hero {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #e8f0fa 100%);
	padding: 32px 0 64px;
	overflow: hidden;
}

.llv-hero__bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(20, 48, 91, 0.05) 1px, transparent 1px);
	background-size: 120px 100%;
	pointer-events: none;
}

.llv-hero__glow {
	position: absolute;
	right: -120px;
	top: 80px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(25, 194, 176, 0.18) 0%, rgba(25, 194, 176, 0) 70%);
	pointer-events: none;
}

.llv-hero__container {
	position: relative;
}

.llv-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px;
	background: rgba(11, 139, 130, 0.1);
	border: 1px solid rgba(11, 139, 130, 0.25);
	border-radius: 100px;
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0b8b82;
	font-weight: 500;
}

.llv-hero__badge-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #19c2b0;
}

.llv-hero__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(44px, 6.6vw, 92px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #0b1e38;
	margin: 28px 0 0;
	max-width: 1040px;
	text-wrap: balance;
}

.llv-hero__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-hero__description {
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.55;
	color: #324b73;
	max-width: 720px;
	margin: 32px 0 0;
	text-wrap: pretty;
}

.llv-hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 44px;
	flex-wrap: wrap;
}

.llv-hero__cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.005em;
	text-decoration: none;
}

.llv-hero__cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #14305b;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1.5px solid rgba(20, 48, 91, 0.35);
	padding-bottom: 4px;
	text-decoration: none;
}

/* ==========================================================================
   Home: Path Cards + Trust Strip
   ========================================================================== */

.llv-paths {
	background: #f8fafc;
	padding: 48px 0 96px;
	position: relative;
}

.llv-paths__intro {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 40px;
}

.llv-paths__intro .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-paths__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(34px, 4.4vw, 60px);
	line-height: 1.06;
	letter-spacing: -0.022em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-paths__description {
	font-size: 18px;
	line-height: 1.6;
	color: #3a517a;
	margin: 24px auto 0;
	max-width: 620px;
	text-wrap: pretty;
}

.llv-paths__grid {
	row-gap: 28px;
}

.llv-path-card {
	display: block;
	height: 100%;
	background: #ffffff;
	border-radius: 16px;
	padding: 48px 44px 44px;
	border: 1px solid rgba(20, 48, 91, 0.1);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	transition:
		transform 200ms ease,
		box-shadow 200ms ease;
}

.llv-path-card:hover {
	transform: translateY(-3px);
}

.llv-path-card--light:hover {
	box-shadow: 0 24px 48px -20px rgba(20, 48, 91, 0.25);
	border-color: rgba(11, 139, 130, 0.4);
}

.llv-path-card--dark:hover {
	box-shadow: 0 24px 48px -20px rgba(11, 30, 56, 0.5);
}

.llv-path-card--light .llv-path-card__glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.16), transparent 70%);
	pointer-events: none;
}

.llv-path-card--dark {
	background: #0b1e38;
	color: #fff;
	border-color: rgba(25, 194, 176, 0.25);
}

.llv-path-card--dark .llv-path-card__glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle at top right, rgba(25, 194, 176, 0.32), transparent 70%);
	pointer-events: none;
}

.llv-path-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 36px;
	position: relative;
}

.llv-path-card__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px;
	border-radius: 100px;
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
}

.llv-path-card--light .llv-path-card__label {
	background: rgba(245, 166, 35, 0.14);
	color: #b87a13;
}

.llv-path-card--light .llv-path-card__label span {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f5a623;
}

.llv-path-card--dark .llv-path-card__label {
	background: rgba(25, 194, 176, 0.18);
	color: #19c2b0;
}

.llv-path-card--dark .llv-path-card__label span {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #19c2b0;
}

.llv-path-card__type {
	font-family: "DM Serif Display", serif;
	font-size: 14px;
}

.llv-path-card--light .llv-path-card__type {
	color: #b9c5d9;
}

.llv-path-card--dark .llv-path-card__type {
	color: #6889b0;
}

.llv-path-card__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(26px, 2.6vw, 36px);
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0 0 20px;
	text-wrap: balance;
}

.llv-path-card--light .llv-path-card__heading {
	color: #0b1e38;
}

.llv-path-card--dark .llv-path-card__heading {
	color: #ffffff;
}

.llv-path-card__description {
	font-size: 16.5px;
	line-height: 1.6;
	margin: 0 0 36px;
	text-wrap: pretty;
}

.llv-path-card--light .llv-path-card__description {
	color: #3a517a;
}

.llv-path-card--dark .llv-path-card__description {
	color: #c8d4e6;
}

.llv-path-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 4px;
}

.llv-path-card--light .llv-path-card__cta {
	color: #14305b;
	border-bottom: 1.5px solid rgba(20, 48, 91, 0.3);
}

.llv-path-card--dark .llv-path-card__cta {
	color: #19c2b0;
	border-bottom: 1.5px solid rgba(25, 194, 176, 0.4);
}

.llv-trust-strip {
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid rgba(20, 48, 91, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	align-items: center;
}

.llv-trust-strip__label {
	font-size: 11.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #6b7e9c;
	font-weight: 500;
}

.llv-trust-strip__item {
	font-size: 14px;
	color: #324b73;
	font-weight: 500;
}

.llv-trust-strip__sep {
	color: #b9c5d9;
}

/* ==========================================================================
   Home: The Shift / Credibility (label + copy layout)
   ========================================================================== */

.llv-shift,
.llv-credibility {
	padding: 128px 0;
}

.llv-shift {
	background: #ffffff;
}

.llv-credibility {
	background: #e8f0fa;
}

.llv-shift__grid,
.llv-credibility__grid {
	--bs-gutter-x: 60px;
}

.llv-shift__heading,
.llv-credibility__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	max-width: 780px;
	text-wrap: balance;
}

.llv-shift__description,
.llv-credibility__description {
	font-size: 18px;
	line-height: 1.65;
	color: #3a517a;
	margin: 32px 0 0;
	max-width: 720px;
	text-wrap: pretty;
}

/* ==========================================================================
   Home: What Vela Does
   ========================================================================== */

.llv-vela-does {
	background: #e8f0fa;
	padding: 128px 0;
}

.llv-vela-does__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

.llv-vela-does__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	max-width: 720px;
	text-wrap: balance;
}

.llv-vela-does__subheading {
	font-size: 17px;
	line-height: 1.5;
	color: #3a517a;
	max-width: 360px;
	margin: 0;
}

.llv-vela-does__grid {
	row-gap: 24px;
}

.llv-vela-does__card {
	height: 100%;
	background: #ffffff;
	padding: 32px;
	border-radius: 12px;
	border: 1px solid rgba(20, 48, 91, 0.06);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.llv-vela-does__card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.llv-vela-does__card-number {
	font-family: "DM Serif Display", serif;
	font-size: 28px;
	color: #19c2b0;
	line-height: 1;
}

.llv-vela-does__card-rule {
	width: 36px;
	height: 1px;
	background: rgba(20, 48, 91, 0.12);
}

.llv-vela-does__card-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #0b1e38;
	margin: 0;
	letter-spacing: -0.005em;
}

.llv-vela-does__card-description {
	font-size: 15px;
	line-height: 1.55;
	color: #3a517a;
	margin: 0;
}

/* ==========================================================================
   Home: White-Label Promise
   ========================================================================== */

.llv-promise {
	background: #ffffff;
	padding: 140px 0;
}

.llv-promise__inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.llv-promise__inner .llv-eyebrow {
	margin-bottom: 24px;
}

.llv-promise__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(34px, 4.4vw, 64px);
	line-height: 1.06;
	letter-spacing: -0.022em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-promise__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-promise__description {
	font-size: 19px;
	line-height: 1.6;
	color: #3a517a;
	margin: 32px auto 0;
	max-width: 720px;
	text-wrap: pretty;
}

/* ==========================================================================
   Home: How It Works
   ========================================================================== */

.llv-works {
	background: #0b1e38;
	color: #fff;
	padding: 128px 0;
}

.llv-works__header {
	max-width: 800px;
	margin: 0 0 72px;
}

.llv-works__header .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-works__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0;
	text-wrap: balance;
}

.llv-works__grid {
	--bs-gutter-x: 8px;
	position: relative;
}

.llv-works__step {
	height: 100%;
	padding: 36px 28px 36px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.llv-works__step-label {
	font-family: "DM Serif Display", serif;
	font-size: 14px;
	color: #19c2b0;
	letter-spacing: 0.18em;
	margin-bottom: 24px;
}

.llv-works__step-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 26px;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 14px;
}

.llv-works__step-description {
	font-size: 16px;
	line-height: 1.6;
	color: #b6c5dc;
	margin: 0;
}

/* ==========================================================================
   Home: Offerings
   ========================================================================== */

.llv-offerings {
	background: #ffffff;
	padding: 128px 0;
}

.llv-offerings__header {
	max-width: 720px;
	margin: 0 0 64px;
}

.llv-offerings__header .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-offerings__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-offerings__grid {
	row-gap: 24px;
}

.llv-offering-card {
	height: 100%;
	padding: 40px 36px;
	border-radius: 12px;
	border: 1px solid rgba(20, 48, 91, 0.06);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.llv-offering-card--light {
	background: #f8fafc;
}

.llv-offering-card--dark {
	background: #0b1e38;
	border-color: rgba(25, 194, 176, 0.25);
}

.llv-offering-card__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
}

.llv-offering-card--light .llv-offering-card__label {
	color: #0b8b82;
}

.llv-offering-card--light .llv-offering-card__label span {
	display: inline-block;
	width: 18px;
	height: 1.5px;
	background: #0b8b82;
}

.llv-offering-card--dark .llv-offering-card__label {
	color: #19c2b0;
}

.llv-offering-card--dark .llv-offering-card__label span {
	display: inline-block;
	width: 18px;
	height: 1.5px;
	background: #19c2b0;
}

.llv-offering-card__title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.15;
	margin: 0;
	letter-spacing: -0.01em;
}

.llv-offering-card--light .llv-offering-card__title {
	color: #0b1e38;
}

.llv-offering-card--dark .llv-offering-card__title {
	color: #ffffff;
}

.llv-offering-card__description {
	font-size: 15.5px;
	line-height: 1.6;
	margin: 0;
}

.llv-offering-card--light .llv-offering-card__description {
	color: #3a517a;
}

.llv-offering-card--dark .llv-offering-card__description {
	color: #c8d4e6;
}

.llv-offerings__footer {
	margin-top: 40px;
}

.llv-offerings__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #14305b;
	font-size: 15.5px;
	font-weight: 500;
	border-bottom: 1.5px solid rgba(20, 48, 91, 0.35);
	padding-bottom: 4px;
	text-decoration: none;
}

/* ==========================================================================
   Home: Charter Teaser
   ========================================================================== */

.llv-charter {
	background: #14305b;
	color: #fff;
	padding: 128px 0;
	position: relative;
	overflow: hidden;
}

.llv-charter__glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.llv-charter__container {
	position: relative;
}

.llv-charter__inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.llv-charter__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px;
	border: 1px solid rgba(245, 166, 35, 0.4);
	border-radius: 100px;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #f5a623;
	font-weight: 500;
	margin-bottom: 28px;
}

.llv-charter__badge-dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f5a623;
}

.llv-charter__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(34px, 4.6vw, 64px);
	line-height: 1.06;
	letter-spacing: -0.022em;
	color: #ffffff;
	margin: 0;
	text-wrap: balance;
}

.llv-charter__heading em {
	font-style: italic;
	color: #f5a623;
}

.llv-charter__description {
	font-size: 18.5px;
	line-height: 1.6;
	color: #c8d4e6;
	margin: 28px auto 40px;
	max-width: 720px;
	text-wrap: pretty;
}

.llv-charter__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #f5a623;
	color: #0b1e38;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.005em;
	text-decoration: none;
}

/* ==========================================================================
   Home: Final CTA
   ========================================================================== */

.llv-final-cta {
	background: #f8fafc;
	padding: 140px 0;
}

.llv-final-cta__inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.llv-final-cta__inner .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-final-cta__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(36px, 4.8vw, 68px);
	line-height: 1.04;
	letter-spacing: -0.024em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-final-cta__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-final-cta__description {
	font-size: 19px;
	line-height: 1.6;
	color: #3a517a;
	margin: 30px auto 44px;
	max-width: 640px;
	text-wrap: pretty;
}

.llv-final-cta__actions {
	display: inline-flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: center;
}

.llv-final-cta__cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

.llv-final-cta__cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #14305b;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1.5px solid rgba(20, 48, 91, 0.35);
	padding-bottom: 4px;
	text-decoration: none;
}

/* ==========================================================================
   For ISVs: Hero
   ========================================================================== */

.llv-isv-hero {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #e8f0fa 100%);
	padding: 96px 0 120px;
	overflow: hidden;
}

.llv-isv-hero__glow {
	position: absolute;
	right: -160px;
	top: 40px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(25, 194, 176, 0.2) 0%, rgba(25, 194, 176, 0) 70%);
	pointer-events: none;
}

.llv-isv-hero__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px;
	background: rgba(11, 139, 130, 0.1);
	border: 1px solid rgba(11, 139, 130, 0.3);
	border-radius: 100px;
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0b8b82;
	font-weight: 600;
}

.llv-isv-hero__badge-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #19c2b0;
}

.llv-isv-hero__heading {
	position: relative;
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(44px, 6.4vw, 88px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #0b1e38;
	margin: 28px 0 0;
	max-width: 1080px;
	text-wrap: balance;
}

.llv-isv-hero__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-isv-hero__description {
	position: relative;
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.55;
	color: #324b73;
	max-width: 720px;
	margin: 32px 0 0;
	text-wrap: pretty;
}

.llv-isv-hero__actions {
	position: relative;
	margin-top: 44px;
}

.llv-isv-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

/* ==========================================================================
   For ISVs: label + copy sections (problem / what we add / partnership)
   ========================================================================== */

.llv-isv-problem,
.llv-isv-adds,
.llv-isv-partnership {
	padding: 128px 0;
}

.llv-isv-problem,
.llv-isv-partnership {
	background: #ffffff;
}

.llv-isv-adds {
	background: #e8f0fa;
}

.llv-isv-problem__grid,
.llv-isv-adds__grid,
.llv-isv-partnership__grid {
	--bs-gutter-x: 60px;
}

.llv-isv-problem__heading,
.llv-isv-adds__heading,
.llv-isv-partnership__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	max-width: 820px;
	text-wrap: balance;
}

.llv-isv-problem__description,
.llv-isv-adds__description,
.llv-isv-partnership__description {
	font-size: 18px;
	line-height: 1.65;
	color: #3a517a;
	margin: 32px 0 0;
	max-width: 720px;
	text-wrap: pretty;
}

/* ==========================================================================
   For ISVs: Scale Without Overhead (dark variant)
   ========================================================================== */

.llv-isv-scale {
	background: #0b1e38;
	color: #fff;
	padding: 128px 0;
}

.llv-isv-scale__grid {
	--bs-gutter-x: 60px;
}

.llv-isv-scale__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0;
	max-width: 820px;
	text-wrap: balance;
}

.llv-isv-scale__heading em {
	font-style: italic;
	color: #19c2b0;
}

.llv-isv-scale__description {
	font-size: 18px;
	line-height: 1.65;
	color: #c8d4e6;
	margin: 32px 0 0;
	max-width: 720px;
	text-wrap: pretty;
}

/* ==========================================================================
   Global: closing CTA (shared across pages)
   ========================================================================== */

.llv-cta {
	background: #f8fafc;
	padding: 140px 0;
}

.llv-cta__inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.llv-cta__inner .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-cta__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(36px, 4.8vw, 64px);
	line-height: 1.04;
	letter-spacing: -0.024em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-cta__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-cta__description {
	font-size: 19px;
	line-height: 1.6;
	color: #3a517a;
	margin: 28px auto 40px;
	max-width: 680px;
	text-wrap: pretty;
}

.llv-cta__actions {
	display: inline-flex;
	justify-content: center;
}

.llv-cta__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

/* ==========================================================================
   For VARs: Hero
   ========================================================================== */

.llv-var-hero {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #e8f0fa 100%);
	padding: 96px 0 120px;
	overflow: hidden;
}

.llv-var-hero__glow {
	position: absolute;
	right: -160px;
	top: 40px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(25, 194, 176, 0.2) 0%, rgba(25, 194, 176, 0) 70%);
	pointer-events: none;
}

.llv-var-hero__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px;
	background: rgba(11, 139, 130, 0.1);
	border: 1px solid rgba(11, 139, 130, 0.3);
	border-radius: 100px;
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0b8b82;
	font-weight: 600;
}

.llv-var-hero__badge-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #19c2b0;
}

.llv-var-hero__heading {
	position: relative;
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(44px, 6.4vw, 88px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #0b1e38;
	margin: 28px 0 0;
	max-width: 1080px;
	text-wrap: balance;
}

.llv-var-hero__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-var-hero__description {
	position: relative;
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.55;
	color: #324b73;
	max-width: 720px;
	margin: 32px 0 0;
	text-wrap: pretty;
}

.llv-var-hero__actions {
	position: relative;
	margin-top: 44px;
}

.llv-var-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

/* ==========================================================================
   For VARs: label + copy sections (residual problem / the math / reach)
   ========================================================================== */

.llv-var-problem,
.llv-var-math,
.llv-var-reach {
	padding: 128px 0;
}

.llv-var-problem,
.llv-var-reach {
	background: #ffffff;
}

.llv-var-math {
	background: #e8f0fa;
}

.llv-var-problem__grid,
.llv-var-math__grid,
.llv-var-reach__grid {
	--bs-gutter-x: 60px;
}

.llv-var-problem__heading,
.llv-var-math__heading,
.llv-var-reach__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	max-width: 820px;
	text-wrap: balance;
}

.llv-var-problem__description,
.llv-var-math__description,
.llv-var-reach__description {
	font-size: 18px;
	line-height: 1.65;
	color: #3a517a;
	margin: 32px 0 0;
	max-width: 720px;
	text-wrap: pretty;
}

/* ==========================================================================
   For VARs: Around The Clock (dark variant)
   ========================================================================== */

.llv-var-clock {
	background: #0b1e38;
	color: #fff;
	padding: 128px 0;
}

.llv-var-clock__grid {
	--bs-gutter-x: 60px;
}

.llv-var-clock__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0;
	max-width: 820px;
	text-wrap: balance;
}

.llv-var-clock__heading em {
	font-style: italic;
	color: #19c2b0;
}

.llv-var-clock__description {
	font-size: 18px;
	line-height: 1.65;
	color: #c8d4e6;
	margin: 32px 0 0;
	max-width: 720px;
	text-wrap: pretty;
}

/* ==========================================================================
   Global CTA: optional charter/founding-partner note
   ========================================================================== */

.llv-cta__note {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(20, 48, 91, 0.12);
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.llv-cta__note-label {
	font-size: 11.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #b87a13;
	font-weight: 600;
}

.llv-cta__note-text {
	font-size: 15px;
	color: #3a517a;
}

.llv-cta__note-text a {
	color: #14305b;
	border-bottom: 1.5px solid rgba(20, 48, 91, 0.35);
	padding-bottom: 2px;
	font-weight: 500;
}

/* ==========================================================================
   Global: interior-page hero (badge + heading + description, no CTA)
   ========================================================================== */

.llv-page-hero {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #e8f0fa 100%);
	padding: 96px 0 96px;
	overflow: hidden;
}

.llv-page-hero__glow {
	position: absolute;
	right: -160px;
	top: 40px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(25, 194, 176, 0.2) 0%, rgba(25, 194, 176, 0) 70%);
	pointer-events: none;
}

.llv-page-hero__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px;
	background: rgba(11, 139, 130, 0.1);
	border: 1px solid rgba(11, 139, 130, 0.3);
	border-radius: 100px;
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0b8b82;
	font-weight: 600;
}

.llv-page-hero__badge-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #19c2b0;
}

.llv-page-hero__heading {
	position: relative;
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(44px, 6.6vw, 92px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #0b1e38;
	margin: 28px 0 0;
	max-width: 1040px;
	text-wrap: balance;
}

.llv-page-hero__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-page-hero__description {
	position: relative;
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.55;
	color: #324b73;
	max-width: 760px;
	margin: 32px 0 0;
	text-wrap: pretty;
}

/* ==========================================================================
   Talk to Vela: Recordings
   ========================================================================== */

.llv-recordings {
	background: #ffffff;
	padding: 112px 0;
}

.llv-recordings__eyebrow {
	margin-bottom: 18px;
}

.llv-recordings__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.08;
	letter-spacing: -0.018em;
	color: #0b1e38;
	margin: 0 0 56px;
	max-width: 720px;
	text-wrap: balance;
}

.llv-recordings__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 28px;
}

.llv-recording-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.llv-recording-card__label {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #0b8b82;
	font-weight: 600;
}

.llv-recording-card__title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	color: #0b1e38;
	margin: 0;
}

.llv-recording-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: repeating-linear-gradient(45deg, rgba(25, 194, 176, 0.06) 0 1px, transparent 1px 14px), linear-gradient(135deg, #0b1e38 0%, #14305b 100%);
}

.llv-recording-card__play {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	padding: 14px 22px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	backdrop-filter: blur(6px);
	cursor: pointer;
}

.llv-recording-card__play-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #19c2b0;
	color: #0b1e38;
}

.llv-recording-card__meta {
	position: absolute;
	bottom: 14px;
	left: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.llv-recording-card__caption {
	font-size: 15px;
	line-height: 1.6;
	color: #3a517a;
	margin: 0;
}

/* ==========================================================================
   Talk to Vela: Booking
   ========================================================================== */

.llv-booking {
	background: #e8f0fa;
	padding: 128px 0;
}

.llv-booking__grid {
	align-items: start;
	--bs-gutter-x: 64px;
}

.llv-booking__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-booking__heading em {
	font-style: italic;
	color: #0b8b82;
}

.llv-booking__description {
	font-size: 18px;
	line-height: 1.6;
	color: #3a517a;
	margin: 28px 0 0;
	max-width: 480px;
	text-wrap: pretty;
}

.llv-booking-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 36px;
	border: 1px solid rgba(20, 48, 91, 0.08);
	min-height: 460px;
	display: flex;
	flex-direction: column;
}

.llv-booking-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.llv-booking-card__pick-a-time {
	font-family: "DM Serif Display", serif;
	font-size: 22px;
	color: #0b1e38;
}

.llv-booking-card__duration {
	font-size: 12px;
	color: #6b7e9c;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.llv-booking-card__placeholder {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	background: #f8fafc;
	border: 1px dashed rgba(20, 48, 91, 0.18);
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.llv-booking-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #14305b;
	color: #19c2b0;
}

.llv-booking-card__heading {
	font-family: "DM Serif Display", serif;
	font-size: 20px;
	color: #0b1e38;
}

.llv-booking-card__description {
	font-size: 13.5px;
	color: #3a517a;
	max-width: 340px;
	line-height: 1.55;
	margin: 0;
}

.llv-booking-card__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
	background: #14305b;
	color: #fff;
	padding: 13px 22px;
	border-radius: 8px;
	font-size: 14.5px;
	font-weight: 500;
	text-decoration: none;
}

/* ==========================================================================
   Talk to Vela: fallback contact form
   ========================================================================== */

.llv-contact-form {
	background: #ffffff;
	padding: 128px 0;
}

.llv-contact-form__inner {
	max-width: 760px;
}

.llv-contact-form__intro {
	text-align: center;
	margin-bottom: 48px;
}

.llv-contact-form__intro .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-contact-form__heading {
	font-family: "DM Serif Display", serif;
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1.2;
	color: #0b1e38;
	margin: 0 auto;
	max-width: 560px;
	text-wrap: balance;
}

.llv-contact-form__form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.llv-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.llv-contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.llv-contact-form__field span {
	font-size: 13px;
	color: #14305b;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.llv-contact-form__field input {
	padding: 13px 14px;
	border: 1px solid rgba(20, 48, 91, 0.18);
	border-radius: 8px;
	font-size: 15px;
	color: #0b1e38;
	background: #f8fafc;
	width: 100%;
}

.llv-contact-form__field input:focus {
	outline: 2px solid #19c2b0;
	outline-offset: 2px;
}

.llv-contact-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.llv-contact-form__submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 15px 28px;
	border: none;
	border-radius: 8px;
	font-size: 15.5px;
	font-weight: 500;
	cursor: pointer;
}

.llv-contact-form__note {
	font-size: 13px;
	color: #6b7e9c;
}

/* ==========================================================================
   Charter Partners: shared numbered-card component
   ========================================================================== */

.llv-numbered-card {
	background: #f8fafc;
	border-radius: 14px;
	padding: 36px;
	border: 1px solid rgba(20, 48, 91, 0.06);
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.llv-numbered-card__number {
	font-family: "DM Serif Display", serif;
	font-size: 36px;
	color: #19c2b0;
	line-height: 0.9;
	flex-shrink: 0;
}

.llv-numbered-card__heading {
	font-family: "DM Serif Display", serif;
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-numbered-card__title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	color: #0b1e38;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}

.llv-numbered-card__description {
	font-size: 17px;
	line-height: 1.6;
	color: #3a517a;
	margin: 18px 0 0;
}

.llv-numbered-card__caption {
	font-size: 15.5px;
	line-height: 1.6;
	color: #3a517a;
	margin: 0;
}

/* ==========================================================================
   Charter Partners: The Two Hooks
   ========================================================================== */

.llv-hooks {
	background: #14305b;
	padding: 96px 0;
}

.llv-hooks__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* ==========================================================================
   Charter Partners: Founding Benefits
   ========================================================================== */

.llv-benefits {
	background: #ffffff;
	padding: 128px 0;
}

.llv-benefits__header {
	margin-bottom: 56px;
}

.llv-benefits__header .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-benefits__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	max-width: 720px;
	text-wrap: balance;
}

.llv-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* ==========================================================================
   Charter Partners: Guarantee
   ========================================================================== */

.llv-guarantee {
	background: #14305b;
	color: #fff;
	padding: 112px 0;
}

.llv-guarantee__inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.llv-guarantee__heading {
	font-family: "DM Serif Display", serif;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 18px 0 0;
	text-wrap: balance;
}

.llv-guarantee__description {
	font-size: 19px;
	line-height: 1.65;
	color: #c8d4e6;
	margin: 28px auto 0;
	max-width: 820px;
	text-wrap: pretty;
}

/* ==========================================================================
   Charter Partners: Scarcity line
   ========================================================================== */

.llv-scarcity {
	background: #e8f0fa;
	padding: 96px 0;
}

.llv-scarcity__inner {
	max-width: 1000px;
	margin: 0 auto;
}

.llv-scarcity__grid {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 10px;
	margin-bottom: 40px;
}

.llv-scarcity__box {
	aspect-ratio: 1;
	border-radius: 8px;
	background: #14305b;
	color: #f5a623;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "DM Serif Display", serif;
	font-size: 18px;
}

.llv-scarcity__text {
	font-family: "DM Serif Display", serif;
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.2;
	color: #0b1e38;
	margin: 0;
	text-align: center;
	letter-spacing: -0.015em;
}

.llv-scarcity__text em {
	font-style: italic;
	color: #0b8b82;
}

/* ==========================================================================
   Charter Partners: apply form
   ========================================================================== */

.llv-apply-form {
	background: #ffffff;
	padding: 128px 0;
}

.llv-apply-form__inner {
	max-width: 760px;
}

.llv-apply-form__intro {
	text-align: center;
	margin-bottom: 18px;
}

.llv-apply-form__intro .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-apply-form__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-apply-form__description {
	font-size: 18px;
	line-height: 1.6;
	color: #3a517a;
	margin: 0 auto 48px;
	max-width: 760px;
	text-align: center;
}

.llv-apply-form__form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.llv-apply-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.llv-apply-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.llv-apply-form__field span {
	font-size: 13px;
	color: #14305b;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.llv-apply-form__field input,
.llv-apply-form__field textarea {
	padding: 13px 14px;
	border: 1px solid rgba(20, 48, 91, 0.18);
	border-radius: 8px;
	font-size: 15px;
	color: #0b1e38;
	background: #f8fafc;
	width: 100%;
}

.llv-apply-form__field textarea {
	resize: vertical;
}

.llv-apply-form__field input:focus,
.llv-apply-form__field textarea:focus {
	outline: 2px solid #19c2b0;
	outline-offset: 2px;
}

.llv-apply-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.llv-apply-form__submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 15px 28px;
	border: none;
	border-radius: 8px;
	font-size: 15.5px;
	font-weight: 600;
	cursor: pointer;
}

.llv-apply-form__note {
	font-size: 13px;
	color: #6b7e9c;
	max-width: 360px;
}

/* ==========================================================================
   Global: default page body content (Privacy Policy, Terms, etc.)
   ========================================================================== */

.llv-page-content {
	background: #ffffff;
	padding: 96px 0 128px;
}

.llv-page-content__inner {
	max-width: 820px;
}

.llv-page-content__inner h2 {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1.2;
	letter-spacing: -0.015em;
	color: #0b1e38;
	margin: 48px 0 18px;
}

.llv-page-content__inner h2:first-child {
	margin-top: 0;
}

.llv-page-content__inner h3 {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.25;
	color: #0b1e38;
	margin: 36px 0 14px;
}

.llv-page-content__inner p {
	font-size: 16.5px;
	line-height: 1.7;
	color: #3a517a;
	margin: 0 0 20px;
}

.llv-page-content__inner ul,
.llv-page-content__inner ol {
	font-size: 16.5px;
	line-height: 1.7;
	color: #3a517a;
	margin: 0 0 20px;
	padding-left: 22px;
}

.llv-page-content__inner li {
	margin-bottom: 8px;
}

.llv-page-content__inner a {
	color: #14305b;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ==========================================================================
   404 (page not found)
   ========================================================================== */

.llv-404 {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #e8f0fa 100%);
	padding: 140px 0;
	overflow: hidden;
}

.llv-404__glow {
	position: absolute;
	right: -160px;
	top: 40px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(25, 194, 176, 0.2) 0%, rgba(25, 194, 176, 0) 70%);
	pointer-events: none;
}

.llv-404__inner {
	position: relative;
	max-width: 720px;
	text-align: center;
	margin: 0 auto;
}

.llv-404__inner .llv-eyebrow {
	margin-bottom: 18px;
}

.llv-404__heading {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: clamp(36px, 4.8vw, 64px);
	line-height: 1.06;
	letter-spacing: -0.024em;
	color: #0b1e38;
	margin: 0;
	text-wrap: balance;
}

.llv-404__description {
	font-size: 18px;
	line-height: 1.6;
	color: #3a517a;
	margin: 24px 0 0;
}

.llv-404__actions {
	margin-top: 40px;
}

.llv-404__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #14305b;
	color: #fff;
	padding: 16px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
