.lp {
	--lp-ink: #071636;
	--lp-navy-900: #061433;
	--lp-navy-800: #0a1f4d;
	--lp-navy-700: #0d2b6b;
	--lp-blue-600: #1f4fb8;
	--lp-blue-500: #2f6fe0;
	--lp-blue-400: #5b8ff0;
	--lp-blue-200: #bcd6ff;
	--lp-blue-100: #dde9fd;
	--lp-blue-50: #f1f6fe;
	--lp-muted: #52607a;

	margin: 0;
	background: #fff;
	color: var(--lp-ink);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

.lp-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 28px;
}

.lp .goi-icon {
	display: block;
}

/* Top bar */
.lp-topbar {
	position: relative;
	background: var(--lp-navy-900);
	border-bottom: 1px solid rgba(188, 214, 255, 0.12);
}

.lp-topbar-flag {
	position: absolute;
	top: 50%;
	left: 24px;
	width: 45px;
	height: 27px;
	transform: translateY(-50%);
	border-radius: 3px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* On wide screens, pin the language picker to the far right, mirroring the flag */
@media (min-width: 1261px) {
	.lp-topbar .lp-lang {
		position: absolute;
		top: 50%;
		right: 24px;
		transform: translateY(-50%);
	}
}

/* Only shown where the side margin has room for it */
@media (max-width: 1260px) {
	.lp-topbar-flag {
		display: none;
	}
}

.lp-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.lp-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	text-decoration: none;
}

.lp-brand img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(188, 214, 255, 0.18);
}

.lp-brand > span {
	white-space: nowrap;
}

.lp-brand strong,
.lp-brand small {
	display: inline;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.lp-flag-band {
	height: 20px;
	line-height: 0;
}

.lp-flag-band svg {
	width: 100%;
	height: 100%;
	display: block;
}

.lp-lang {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--lp-blue-200);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(188, 214, 255, 0.22);
	border-radius: 999px;
	padding: 7px 14px;
}

.lp-lang select {
	background: transparent;
	border: none;
	color: #fff;
	font: inherit;
	font-size: 0.86rem;
	font-weight: 600;
	cursor: pointer;
}

.lp-lang select:focus {
	outline: none;
}

.lp-lang option {
	color: var(--lp-ink);
}

/* Hero */
.lp-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(900px 500px at 85% 20%, rgba(91, 143, 240, 0.35), transparent 60%),
		radial-gradient(700px 420px at 0% 100%, rgba(31, 79, 184, 0.45), transparent 60%),
		linear-gradient(160deg, var(--lp-navy-800) 0%, var(--lp-navy-700) 45%, var(--lp-blue-600) 100%);
}

.lp-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 1px;
	background: rgba(188, 214, 255, 0.2);
}

.lp-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: center;
}

.lp-hero-grid {
	padding-top: 72px;
	padding-bottom: 84px;
}

.lp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(188, 214, 255, 0.14);
	border: 1px solid rgba(188, 214, 255, 0.28);
	color: var(--lp-blue-100);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.lp-hero h1 {
	margin: 20px 0 16px;
	font-size: clamp(2rem, 3.6vw, 2.9rem);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.lp-lede {
	margin: 0 0 34px;
	max-width: 520px;
	font-size: 1.08rem;
	line-height: 1.6;
	color: var(--lp-blue-100);
}

.lp-choices {
	display: grid;
	gap: 14px;
	max-width: 520px;
}

.lp-choice {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	background: #fff;
	border-radius: 16px;
	color: var(--lp-ink);
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(6, 20, 51, 0.28);
	border: 2px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lp-choice:hover,
.lp-choice:focus-visible {
	transform: translateY(-2px);
	border-color: var(--lp-blue-400);
	box-shadow: 0 16px 38px rgba(6, 20, 51, 0.36);
	outline: none;
}

.lp-choice-icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	color: #fff;
}

.lp-choice-icon-dark {
	background: linear-gradient(135deg, var(--lp-navy-700), var(--lp-navy-900));
}

.lp-choice-icon-bright {
	background: linear-gradient(135deg, var(--lp-blue-400), var(--lp-blue-600));
}

.lp-choice-text {
	flex: 1;
	min-width: 0;
}

.lp-choice-text strong {
	display: block;
	font-size: 1.12rem;
	font-weight: 700;
	color: var(--lp-navy-800);
}

.lp-choice-text small {
	display: block;
	margin-top: 2px;
	font-size: 0.88rem;
	color: var(--lp-muted);
}

.lp-choice-arrow {
	color: var(--lp-blue-500);
	transition: transform 0.18s ease;
}

.lp-choice:hover .lp-choice-arrow {
	transform: translateX(4px);
}

.lp-hero-art svg {
	width: 100%;
	max-width: 480px;
	height: auto;
	display: block;
	margin-left: auto;
	filter: drop-shadow(0 24px 40px rgba(6, 20, 51, 0.35));
}

/* Sections */
.lp-section {
	padding: 72px 0;
}

.lp-section-tint {
	background: linear-gradient(180deg, var(--lp-blue-50), #ffffff);
	border-top: 1px solid var(--lp-blue-100);
	border-bottom: 1px solid var(--lp-blue-100);
}

.lp-h2 {
	margin: 0 0 8px;
	font-size: 1.7rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--lp-navy-800);
}

.lp-muted {
	margin: 0;
	color: var(--lp-muted);
	line-height: 1.6;
}

.lp-steps {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.lp-steps li {
	position: relative;
	padding: 26px 24px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--lp-blue-100);
	box-shadow: 0 1px 2px rgba(13, 43, 107, 0.05);
}

.lp-steps li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 3px;
	border-radius: 0 0 3px 3px;
	background: linear-gradient(90deg, var(--lp-navy-700), var(--lp-blue-400));
}

.lp-step-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--lp-blue-50);
	color: var(--lp-blue-600);
	margin-bottom: 16px;
}

.lp-step-num {
	display: block;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lp-blue-500);
	margin-bottom: 4px;
}

.lp-steps strong {
	display: block;
	font-size: 1.05rem;
	color: var(--lp-navy-800);
	margin-bottom: 6px;
}

.lp-steps p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--lp-muted);
}

.lp-ready-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 40px;
	align-items: start;
}

.lp-ready {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.lp-ready li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--lp-blue-100);
}

.lp-ready-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	color: #fff;
	background: linear-gradient(135deg, var(--lp-blue-500), var(--lp-navy-700));
}

.lp-ready strong {
	display: block;
	font-size: 0.96rem;
	color: var(--lp-navy-800);
}

.lp-ready small {
	display: block;
	margin-top: 3px;
	font-size: 0.85rem;
	color: var(--lp-muted);
}

.lp-trust {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 26px 28px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--lp-navy-800), var(--lp-blue-600));
	color: #fff;
}

.lp-trust-icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.14);
}

.lp-trust strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.lp-trust p {
	margin: 0;
	color: var(--lp-blue-100);
	line-height: 1.55;
	font-size: 0.93rem;
}

/* Footer */
.lp-footer {
	background: var(--lp-navy-900);
	color: var(--lp-blue-200);
	font-size: 0.85rem;
}

.lp-footer-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 72px;
}

.lp-footer img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}

/* Responsive */
@media (max-width: 900px) {
	.lp-hero-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.lp .lp-hero-grid {
		padding-top: 40px;
		padding-bottom: 52px;
	}

	.lp-hero-art {
		order: -1;
	}

	.lp-hero-art svg {
		max-width: 300px;
		margin: 0 auto;
	}

	.lp-choices {
		max-width: none;
	}

	.lp-steps,
	.lp-ready-grid {
		grid-template-columns: 1fr;
	}

	.lp-ready-grid {
		gap: 20px;
	}
}

@media (max-width: 560px) {
	.lp-wrap {
		padding-left: 18px;
		padding-right: 18px;
	}

	.lp-brand > span {
		white-space: normal;
	}

	.lp-brand strong,
	.lp-brand small {
		font-size: 0.92rem;
	}

	.lp-hero-art {
		display: none;
	}

	.lp-ready {
		grid-template-columns: 1fr;
	}

	.lp-section {
		padding: 52px 0;
	}
}

/* Readability in bright light (e.g. phones outdoors): stronger contrast,
   heavier small text, and shadows behind light-on-dark text. */
.lp {
	--lp-muted: #36435b;
}

.lp-brand strong,
.lp-brand small,
.lp-lang,
.lp-eyebrow,
.lp-hero h1,
.lp-lede,
.lp-trust strong,
.lp-trust p,
.lp-footer {
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 0 12px rgba(0, 0, 0, 0.35);
}

.lp-eyebrow,
.lp-lede,
.lp-trust p,
.lp-footer {
	color: #fff;
}

.lp-lede {
	font-weight: 500;
}

.lp-choice {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.lp-choice-text strong {
	color: var(--lp-ink);
}

.lp-choice-text small,
.lp-steps p,
.lp-ready small,
.lp-muted {
	font-weight: 500;
}

.lp-choice-arrow {
	color: var(--lp-blue-600);
}

.lp-steps strong,
.lp-ready strong {
	color: var(--lp-ink);
}
