/* Trigger button lives outside #eal-modal-root on some pages — keep nav tokens global */
:root {
	--eal-trigger-navy: #06153c;
	--eal-trigger-navy-hover: #0c172f;
}

/* Early access modal — Figma-aligned tokens (see design: rounded card, #F9A620 CTA, grey fields) */
#eal-modal-root {
	--eal-orange: #f9a620;
	--eal-orange-hover: #df9210;
	--eal-orange-focus: rgba(249, 166, 32, 0.35);
	--eal-orange-tint: rgba(249, 166, 32, 0.1);
	--eal-text: #1a1a1a;
	--eal-text-muted: #4a4a4a;
	--eal-label: #333333;
	--eal-input-bg: #f5f5f5;
	--eal-input-border: #e0e0e0;
	--eal-input-border-hover: #cfcfcf;
	--eal-card-radius: 16px;
	--eal-field-radius: 4px;
	--eal-btn-radius: 6px;
	--eal-dialog-max: 740px;
	--eal-success-max: 620px;
	--eal-overlay-pad: 16px;
	--eal-confetti-navy: #1a2744;
	--eal-confetti-orange: #f9a620;
	--eal-confetti-grey-blue: #a8b8cc;
}

.commloan-ea-btn {
	display: inline-block;
	padding: 0.65rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	background: #f9a620;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-family: inherit;
}

.commloan-ea-btn:hover {
	background: #df9210;
}

.mod-early-access-signups {
	display: block;
}

/* Opens early-access modal: solid navy pill, white label + thin long arrow (Figma — no orange ring on button) */
/* a.early-access-list-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	box-sizing: border-box;
	min-width: min(292px, 100%);
	padding: 17px 44px;
	min-height: 52px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	color: #fff !important;
	background: var(--eal-trigger-navy) !important;
	border: none !important;
	border-radius: var(--eal-btn-radius);
	box-shadow: none !important;
	transition: background 0.18s ease, color 0.18s ease;
}

a.early-access-list-trigger:hover,
a.early-access-list-trigger:focus-visible {
	color: #fff !important;
	background: var(--eal-trigger-navy-hover) !important;
	text-decoration: none !important;
}

a.early-access-list-trigger:focus-visible {
	outline: 2px solid var(--eal-orange-focus);
	outline-offset: 3px;
}

a.early-access-list-trigger .eal-trigger-arrow {
	flex-shrink: 0;
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	vertical-align: middle;
	color: inherit;
	opacity: 0.98;
}

.home-hero-section .link a.early-access-list-trigger {
	background: var(--eal-trigger-navy) !important;
	border: none !important;
	color: #fff !important;
}

.home-hero-section .link a.early-access-list-trigger:hover,
.home-hero-section .link a.early-access-list-trigger:focus-visible {
	background: var(--eal-trigger-navy-hover) !important;
	color: #fff !important;
}

@media (max-width: 575px) {
	a.early-access-list-trigger {
		min-width: 0;
		width: auto;
		max-width: 100%;
		padding: 15px 28px;
		font-size: 12px;
		letter-spacing: 0.12em;
		gap: 0.55rem;
	}

	a.early-access-list-trigger .eal-trigger-arrow {
		font-size: 12px;
	}
} */

.eal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--eal-overlay-pad);
	background: rgba(0, 0, 0, 0.65);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.eal-overlay.eal-open {
	opacity: 1;
	visibility: visible;
}

.eal-dialog {
	width: 100%;
	max-width: min(var(--eal-dialog-max), calc(100vw - 2 * var(--eal-overlay-pad)));
	max-height: min(90vh, calc(100vh - 2 * var(--eal-overlay-pad)));
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #ffffff;
	border: none;
	border-radius: var(--eal-card-radius);
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(0, 0, 0, 0.06);
	padding: 36px 40px 32px;
	font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--eal-text);
	transform: translateY(16px) scale(0.98);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	box-sizing: border-box;
}

.eal-overlay.eal-open .eal-dialog {
	transform: translateY(0) scale(1);
}

.eal-title {
	margin: 0 0 12px;
	padding-right: 50px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.015em;
	text-align: left;
	color: var(--eal-text);
}

.eal-sub {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 400;
	text-align: left;
	color: var(--eal-text-muted);
}

.eal-row {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

.eal-field {
	flex: 1;
	min-width: 0;
}

.eal-field-full {
	margin-bottom: 22px;
}

.eal-label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--eal-label);
}

.eal-req {
	color: #d32f2f;
	font-weight: 700;
	margin-left: 2px;
}

.eal-input {
	width: 100%;
	box-sizing: border-box;
	min-height: 26px;
	padding: 4px 10px;
	font-size: 13px;
	line-height: 1.25;
	font-family: inherit;
	border: 1px solid var(--eal-input-border);
	border-radius: var(--eal-field-radius);
	background: var(--eal-input-bg);
	color: var(--eal-text);
	transition:
		border-color 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease;
}

.eal-input::placeholder {
	color: #9e9e9e;
}

.eal-input:hover {
	border-color: var(--eal-input-border-hover);
}

.eal-input:focus {
	outline: none;
	border-color: var(--eal-orange);
	background: #fafafa;
	box-shadow: 0 0 0 3px var(--eal-orange-focus);
}

.eal-input[aria-invalid='true'] {
	border-color: #c62828;
	background: #fff8f8;
}

.eal-input[aria-invalid='true']:focus {
	box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.2);
}

.eal-field-error {
	display: none;
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.35;
	color: #c62828;
	font-weight: 500;
}

.eal-field-error:not(:empty) {
	display: block;
}

.eal-field-full .eal-field-error:not(:empty),
.eal-field .eal-field-error:not(:empty) {
	margin-bottom: 4px;
}

.eal-row .eal-field .eal-field-error:not(:empty) {
	min-height: calc(1.35em + 4px);
}

.eal-error,
.eal-form-msg {
	min-height: 1.25rem;
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.4;
	color: #c62828;
	font-weight: 500;
}

.eal-form-msg:empty {
	display: none;
}

.eal-form-msg:not(:empty) {
	display: block;
}

.eal-actions {
	display: flex;
	justify-content: center;
	margin-top: 8px;
	padding-top: 4px;
}

.eal-submit {
	appearance: none;
	border: none;
	cursor: pointer;
	min-width: 260px;
	padding: 14px 36px;
	font-size: 14px;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.065em;
	text-transform: uppercase;
	color: #fff;
	background: var(--eal-orange);
	border-radius: var(--eal-btn-radius);
	transition:
		background 0.18s ease,
		transform 0.12s ease,
		box-shadow 0.18s ease;
	box-shadow: 0 2px 10px rgba(249, 166, 32, 0.38);
}

.eal-submit:hover {
	background: var(--eal-orange-hover);
	box-shadow: 0 4px 16px rgba(249, 166, 32, 0.42);
}

.eal-submit:active {
	transform: translateY(1px);
	box-shadow: 0 1px 6px rgba(249, 166, 32, 0.35);
}

.eal-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.eal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--eal-orange);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	color: var(--eal-orange);
	transition:
		color 0.18s ease,
		border-color 0.18s ease,
		background-color 0.18s ease,
		transform 0.12s ease;
}

.eal-close:hover {
	color: var(--eal-orange-hover);
	border-color: var(--eal-orange-hover);
	background: rgba(249, 166, 32, 0.06);
}

.eal-close:active {
	transform: scale(0.95);
}

.eal-close:focus-visible {
	outline: 2px solid var(--eal-orange);
	outline-offset: 4px;
}

.eal-close-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

/* Font Awesome 4 thin × inside outlined circle (Figma-style ring + glyph) */
.eal-close .fa-times {
	display: inline-block;
	width: 1em;
	height: 1em;
	font: normal normal normal 13px/1 FontAwesome;
	font-size: 13px;
	line-height: 1;
	vertical-align: middle;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
}

.eal-dialog-wrap {
	position: relative;
	width: 100%;
	max-width: min(var(--eal-dialog-max), calc(100vw - 2 * var(--eal-overlay-pad)));
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.eal-overlay {
		--eal-overlay-pad: 14px;
	}

	.eal-dialog {
		padding: 32px 28px 28px;
	}

	.eal-title {
		font-size: 20px;
		padding-right: 48px;
	}

	.eal-sub {
		font-size: 14px;
		margin-bottom: 24px;
	}
}

@media (max-width: 640px) {
	.eal-row {
		flex-direction: column;
		gap: 18px;
		margin-bottom: 18px;
	}

	.eal-field-full {
		margin-bottom: 20px;
	}
}

@media (max-width: 560px) {
	.eal-overlay {
		--eal-overlay-pad: 12px;
		align-items: flex-start;
		padding-top: max(12px, env(safe-area-inset-top, 0px));
		padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
	}

	.eal-dialog-wrap {
		margin: auto 0;
	}

	.eal-dialog {
		padding: 28px 20px 26px;
		border-radius: 14px;
		box-shadow:
			0 16px 48px rgba(0, 0, 0, 0.2),
			0 0 0 1px rgba(0, 0, 0, 0.06);
	}

	.eal-title {
		font-size: clamp(17px, 4.5vw, 19px);
		padding-right: 46px;
	}

	.eal-close {
		top: 14px;
		right: 14px;
		width: 36px;
		height: 36px;
	}

	.eal-close .fa-times {
		font-size: 11px;
	}

	.eal-submit {
		width: 100%;
		min-width: 0;
		padding: 14px 24px;
	}

	.eal-success-dialog {
		padding: 47px 20px 49px;
		max-width: 100%;
		border-radius: 18px;
	}

	.eal-success-title {
		font-size: 21px;
		margin-left: 8px;
		margin-right: 8px;
	}

	.eal-success-body {
		font-size: 13px;
		line-height: 1.5;
		padding: 0 8px;
	}

	.eal-success-badge svg {
		width: 72px;
		height: 72px;
	}

	.eal-success-cta {
		width: 100%;
		min-width: 0;
		font-size: 12px;
		padding: 12px 20px;
	}
}

/* --- Thank-you panel after successful signup --- */
.eal-panel-form,
.eal-panel-success {
	width: 100%;
	max-width: min(var(--eal-dialog-max), calc(100vw - 2 * var(--eal-overlay-pad)));
	display: flex;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
}

.eal-overlay.eal-state-form .eal-panel-success {
	display: none !important;
}

.eal-overlay.eal-state-success .eal-panel-form {
	display: none !important;
}

.eal-overlay.eal-state-success .eal-panel-success {
	max-width: min(var(--eal-success-max), calc(100vw - 2 * var(--eal-overlay-pad)));
}

.eal-success-dialog {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: min(var(--eal-success-max), calc(100vw - 2 * var(--eal-overlay-pad)));
	background: #fff;
	border-radius: 20px;
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(0, 0, 0, 0.06);
	padding: 51px 44px 53px;
	text-align: center;
	font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	box-sizing: border-box;
	transform: translateY(16px) scale(0.98);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.eal-success-dialog > *:not(.eal-success-confetti-layer) {
	position: relative;
	z-index: 1;
}

.eal-success-confetti-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: inherit;
}

.eal-overlay.eal-open.eal-state-success .eal-success-dialog {
	transform: translateY(0) scale(1);
}

.eal-success-deco {
	position: relative;
	min-height: 100px;
	margin: 0 0 4px;
	padding-top: 4px;
}

/* Full-card confetti (Figma: dense strips + dots + sparkles; navy / orange / grey-blue) */
.eal-confetti {
	position: absolute;
	display: block;
	border-radius: 2px;
	opacity: 0.9;
}

.eal-confetti--spark {
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background: var(--eal-confetti-orange);
	box-shadow:
		0 0 0 1px rgba(249, 166, 32, 0.45),
		-4px 0 0 -1px rgba(249, 166, 32, 0.85),
		4px 0 0 -1px rgba(249, 166, 32, 0.85),
		0 -4px 0 -1px rgba(249, 166, 32, 0.85),
		0 4px 0 -1px rgba(249, 166, 32, 0.85);
}

.eal-confetti--1 {
	width: 7px;
	height: 14px;
	background: var(--eal-confetti-orange);
	top: 3%;
	left: 6%;
	transform: rotate(-22deg);
}

.eal-confetti--2 {
	width: 10px;
	height: 6px;
	background: var(--eal-confetti-navy);
	top: 5%;
	left: 18%;
	transform: rotate(35deg);
}

.eal-confetti--3 {
	width: 6px;
	height: 12px;
	background: var(--eal-confetti-orange);
	top: 2%;
	left: 32%;
	transform: rotate(12deg);
}

.eal-confetti--4 {
	width: 8px;
	height: 8px;
	background: var(--eal-confetti-navy);
	top: 8%;
	right: 26%;
	transform: rotate(-12deg);
	border-radius: 1px;
}

.eal-confetti--5 {
	width: 11px;
	height: 5px;
	background: var(--eal-confetti-grey-blue);
	top: 4%;
	right: 12%;
	transform: rotate(-35deg);
}

.eal-confetti--6 {
	width: 5px;
	height: 11px;
	background: var(--eal-confetti-navy);
	top: 11%;
	right: 5%;
	transform: rotate(18deg);
}

.eal-confetti--7 {
	width: 8px;
	height: 7px;
	background: var(--eal-confetti-orange);
	top: 14%;
	left: 10%;
	transform: rotate(40deg);
}

.eal-confetti--8 {
	width: 7px;
	height: 13px;
	background: var(--eal-confetti-navy);
	top: 16%;
	left: 26%;
	transform: rotate(-8deg);
}

.eal-confetti--9 {
	width: 8px;
	height: 14px;
	background: var(--eal-confetti-navy);
	top: 12%;
	left: 42%;
	transform: rotate(15deg);
}

.eal-confetti--10 {
	width: 6px;
	height: 11px;
	background: var(--eal-confetti-grey-blue);
	top: 7%;
	left: 54%;
	transform: rotate(-28deg);
}

.eal-confetti--11 {
	width: 9px;
	height: 5px;
	background: var(--eal-confetti-orange);
	top: 18%;
	right: 38%;
	transform: rotate(52deg);
}

.eal-confetti--12 {
	width: 7px;
	height: 12px;
	background: var(--eal-confetti-navy);
	top: 20%;
	right: 22%;
	transform: rotate(-18deg);
}

.eal-confetti--13 {
	width: 5px;
	height: 9px;
	background: var(--eal-confetti-orange);
	top: 22%;
	right: 14%;
	transform: rotate(22deg);
}

.eal-confetti--14 {
	width: 10px;
	height: 5px;
	background: var(--eal-confetti-navy);
	top: 25%;
	left: 4%;
	transform: rotate(-42deg);
}

.eal-confetti--15 {
	width: 6px;
	height: 13px;
	background: var(--eal-confetti-grey-blue);
	top: 26%;
	left: 16%;
	transform: rotate(8deg);
}

.eal-confetti--16 {
	width: 8px;
	height: 6px;
	background: var(--eal-confetti-orange);
	top: 28%;
	left: 36%;
	transform: rotate(-55deg);
}

.eal-confetti--17 {
	width: 7px;
	height: 14px;
	background: var(--eal-confetti-navy);
	top: 24%;
	right: 44%;
	transform: rotate(3deg);
}

.eal-confetti--18 {
	width: 9px;
	height: 6px;
	background: var(--eal-confetti-grey-blue);
	top: 30%;
	right: 8%;
	transform: rotate(28deg);
}

.eal-confetti--19 {
	width: 6px;
	height: 12px;
	background: var(--eal-confetti-orange);
	top: 32%;
	right: 28%;
	transform: rotate(-14deg);
}

.eal-confetti--20 {
	width: 8px;
	height: 14px;
	background: var(--eal-confetti-navy);
	bottom: 52%;
	left: 7%;
	transform: rotate(19deg);
}

.eal-confetti--21 {
	width: 7px;
	height: 6px;
	background: var(--eal-confetti-orange);
	bottom: 48%;
	left: 14%;
	transform: rotate(-33deg);
}

.eal-confetti--22 {
	width: 5px;
	height: 10px;
	background: var(--eal-confetti-navy);
	bottom: 56%;
	left: 22%;
	transform: rotate(41deg);
}

.eal-confetti--23 {
	width: 10px;
	height: 5px;
	background: var(--eal-confetti-grey-blue);
	bottom: 45%;
	right: 35%;
	transform: rotate(-25deg);
}

.eal-confetti--24 {
	width: 7px;
	height: 13px;
	background: var(--eal-confetti-navy);
	bottom: 50%;
	right: 18%;
	transform: rotate(-6deg);
}

.eal-confetti--25 {
	width: 8px;
	height: 7px;
	background: var(--eal-confetti-orange);
	bottom: 42%;
	right: 10%;
	transform: rotate(48deg);
	border-radius: 1px;
}

.eal-confetti--26 {
	width: 6px;
	height: 11px;
	background: var(--eal-confetti-grey-blue);
	bottom: 38%;
	left: 11%;
	transform: rotate(-19deg);
}

.eal-confetti--27 {
	width: 9px;
	height: 5px;
	background: var(--eal-confetti-navy);
	bottom: 36%;
	left: 4%;
	transform: rotate(62deg);
}

.eal-confetti--28 {
	width: 7px;
	height: 12px;
	background: var(--eal-confetti-orange);
	bottom: 44%;
	right: 46%;
	transform: rotate(11deg);
}

.eal-confetti--29 {
	width: 8px;
	height: 14px;
	background: var(--eal-confetti-navy);
	bottom: 40%;
	right: 24%;
	transform: rotate(-21deg);
}

.eal-confetti--30 {
	width: 5px;
	height: 8px;
	background: var(--eal-confetti-grey-blue);
	bottom: 34%;
	right: 6%;
	transform: rotate(36deg);
}

.eal-confetti--31 {
	width: 11px;
	height: 5px;
	background: var(--eal-confetti-orange);
	bottom: 28%;
	left: 18%;
	transform: rotate(-48deg);
}

.eal-confetti--32 {
	width: 7px;
	height: 13px;
	background: var(--eal-confetti-navy);
	bottom: 22%;
	left: 8%;
	transform: rotate(7deg);
}

.eal-confetti--33 {
	width: 6px;
	height: 12px;
	background: var(--eal-confetti-grey-blue);
	bottom: 18%;
	left: 28%;
	transform: rotate(-31deg);
}

.eal-confetti--34 {
	width: 9px;
	height: 6px;
	background: var(--eal-confetti-navy);
	bottom: 14%;
	right: 30%;
	transform: rotate(24deg);
}

.eal-confetti--35 {
	width: 8px;
	height: 14px;
	background: var(--eal-confetti-orange);
	bottom: 12%;
	right: 14%;
	transform: rotate(-11deg);
}

.eal-confetti--36 {
	width: 7px;
	height: 11px;
	background: var(--eal-confetti-navy);
	bottom: 8%;
	right: 4%;
	transform: rotate(33deg);
}

.eal-confetti--37 {
	width: 10px;
	height: 5px;
	background: var(--eal-confetti-grey-blue);
	bottom: 10%;
	left: 42%;
	transform: rotate(-58deg);
}

.eal-confetti--38 {
	width: 6px;
	height: 13px;
	background: var(--eal-confetti-navy);
	bottom: 6%;
	left: 56%;
	transform: rotate(16deg);
}

/* Dots */
.eal-confetti--39,
.eal-confetti--40,
.eal-confetti--41,
.eal-confetti--42,
.eal-confetti--43,
.eal-confetti--44,
.eal-confetti--45,
.eal-confetti--46 {
	border-radius: 50%;
}

.eal-confetti--39 {
	width: 4px;
	height: 4px;
	background: var(--eal-confetti-navy);
	top: 10%;
	left: 48%;
}

.eal-confetti--40 {
	width: 5px;
	height: 5px;
	background: var(--eal-confetti-grey-blue);
	top: 19%;
	right: 32%;
}

.eal-confetti--41 {
	width: 4px;
	height: 4px;
	background: var(--eal-confetti-orange);
	top: 34%;
	left: 30%;
}

.eal-confetti--42 {
	width: 4px;
	height: 4px;
	background: var(--eal-confetti-navy);
	bottom: 58%;
	right: 52%;
}

.eal-confetti--43 {
	width: 5px;
	height: 5px;
	background: var(--eal-confetti-orange);
	bottom: 32%;
	right: 52%;
}

.eal-confetti--44 {
	width: 4px;
	height: 4px;
	background: var(--eal-confetti-grey-blue);
	bottom: 24%;
	left: 38%;
}

.eal-confetti--45 {
	width: 4px;
	height: 4px;
	background: var(--eal-confetti-navy);
	bottom: 16%;
	left: 68%;
}

.eal-confetti--46 {
	width: 5px;
	height: 5px;
	background: var(--eal-confetti-orange);
	top: 36%;
	right: 18%;
}

.eal-confetti--spark.eal-confetti--47 {
	top: 9%;
	left: 58%;
	transform: rotate(45deg);
}

.eal-confetti--spark.eal-confetti--48 {
	top: 21%;
	left: 66%;
	transform: rotate(45deg);
}

.eal-confetti--spark.eal-confetti--49 {
	bottom: 62%;
	left: 52%;
	transform: rotate(45deg);
}

.eal-confetti--spark.eal-confetti--50 {
	bottom: 46%;
	left: 62%;
	transform: rotate(45deg);
}

.eal-confetti--spark.eal-confetti--51 {
	bottom: 20%;
	right: 58%;
	transform: rotate(45deg);
}

.eal-success-badge {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding-top: 4px;
}

.eal-success-badge svg {
	filter: drop-shadow(0 5px 16px rgba(249, 166, 32, 0.28));
}

.eal-success-title {
	margin: 6px 16px 12px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	color: #020c34;
	letter-spacing: -0.03em;
}

/* Body type + per-line width = Figma centered “pyramid” (each phrase one line where space allows) */
.eal-success-body {
	margin: 0 auto;
	max-width: calc(100% - 24px);
	padding: 0 12px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.55;
	color: #616161;
	font-weight: 400;
	text-align: center;
}

.eal-success-body-line {
	display: block;
	width: max-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.eal-success-body-line + .eal-success-body-line {
	margin-top: 0.18em;
}

.eal-success-highlight {
	color: var(--eal-orange);
	font-weight: 700;
}

/* Light grey rule with gap + centred orange diamond (Figma divider) */
.eal-success-rule {
	display: block;
	width: 100%;
	height: 1px;
	margin: 14px 0 14px;
	padding: 0;
	border: none;
	position: relative;
	background: linear-gradient(
		to right,
		#e8e8e8 0%,
		#e8e8e8 calc(50% - 22px),
		transparent calc(50% - 22px),
		transparent calc(50% + 22px),
		#e8e8e8 calc(50% + 22px),
		#e8e8e8 100%
	);
}

.eal-success-rule::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	background: var(--eal-orange);
	transform: translate(-50%, -50%) rotate(45deg);
	border-radius: 1px;
	box-shadow: 0 0 0 3px #fff;
}

.eal-success-actions {
	display: flex;
	justify-content: center;
}

.eal-success-cta {
	appearance: none;
	cursor: pointer;
	width: 100%;
	max-width: 224px;
	min-width: 0;
	padding: 13px 28px;
	font-size: 13px;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: var(--eal-orange);
	border: none;
	border-radius: var(--eal-btn-radius);
	transition:
		background 0.18s ease,
		box-shadow 0.18s ease;
	/* White inset ring + darker orange outer ring (Figma double frame) */
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.95),
		0 0 0 2px var(--eal-orange-hover),
		0 2px 10px rgba(249, 166, 32, 0.35);
}

.eal-success-cta:hover {
	background: var(--eal-orange-hover);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.95),
		0 0 0 2px #c97f0a,
		0 4px 14px rgba(249, 166, 32, 0.4);
}

.eal-success-cta:focus-visible {
	outline: 2px solid var(--eal-orange);
	outline-offset: 3px;
}

/* top banner early access */
.hide-ann-banner .topbanner-sec {
	display: none !important;
}
.topbanner-sec {
	position: relative;
    width: 100%;
	background: linear-gradient(90deg, #f6b44f 0%, #f3a73a 100%);
}

.topbanner-sec .promo-banner {
	width: 100%;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px 18px;
	border-radius: 2px;
	color: #141b33;
	overflow: hidden;
}

.topbanner-sec .promo-left {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
	flex-wrap: wrap;
	padding: 0px 10px;
	padding-left: 0px;
}

.topbanner-sec .spark {
	font-size: 20px;
	line-height: 1;
	margin-right: 2px;
}

.topbanner-sec .headline {
	font-weight: 800;
	font-size: clamp(16px, 1.2vw, 16px);
	line-height: 1.1;
	letter-spacing: 0.2px;
	white-space: nowrap;
}

.topbanner-sec .divider {
	width: 2px;
	height: 26px;
	background: #141b33;
	margin: 0 2px;
	flex: 0 0 2px;
}

.topbanner-sec .date {
	font-size: clamp(16px, 1.2vw, 16px);
	font-weight: 600;
	white-space: nowrap;
}

.topbanner-sec .cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #0f2248;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	padding: 12px 20px;
	min-height: 46px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.2px;
	white-space: nowrap;
	transition: background 0.2s ease;
}
.topbanner-sec .cta-wrap {
	padding: 0px 10px;
}

.topbanner-sec .cta:hover {
	background: #142b5c;
}

.topbanner-sec .arrow {
	font-size: 18px;
	line-height: 1;
	transform: translateY(-1px);
}
.topbanner-sec .ann-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #111;
    padding: 0 4px;
    line-height: 1;
    position: relative;
    top: 0px;
    right: 10px;
}
.topbanner-sec .sep-div {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	width: calc(100% - 58px);
}

@media (max-width: 1199px) {
	.topbanner-sec .sep-div {
		gap: 5px;
	}
	.topbanner-sec .sep-div * {
		margin-right: 20px;
	}
	.topbanner-sec .divider {
		display: none;
	}
}

@media (max-width: 1023px) {
	.topbanner-sec .spark {
		font-size: 20px;
		line-height: 1;
		margin-right: 2px;
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translate(0%, -50%);
	}
	.topbanner-sec .promo-left {
		justify-content: center;
		margin-bottom: 15px;
	}
	.topbanner-sec .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        display: block;
        text-align: center;
    }
	.topbanner-sec .ann-close {
		position: absolute;
		bottom: 5px;
		right: 15px;
	}
	.topbanner-sec .sep-div {
        width: fit-content;
    }
	.topbanner-sec .sep-div, .topbanner-sec .sep-div * {
		display: block;
	}
	.topbanner-sec .divider {
		display: none;
	}
	.topbanner-sec .date {
		padding-top: 10px;
	}
	.topbanner-sec .sep-div * {
		margin-right: 0px;
	}
}

@media (max-width: 900px) {
	.topbanner-sec .promo-banner {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 55px;
        padding-right: 55px;
	}
	.topbanner-sec .cta {
		align-self: flex-end;
	}
	.topbanner-sec .headline {
		display: block;
		text-wrap: inherit;
		line-height: 26px;
	}
}

@media (max-width: 767px) {
	.topbanner-sec {
		padding-top: 55px;
	}
}

@media (max-width: 620px) {
	.topbanner-sec .promo-left {
		gap: 10px;
	}
	.topbanner-sec .headline,
	.topbanner-sec .date {
	white-space: normal;
	}
	.topbanner-sec .cta {
	align-self: stretch;
	}
}