.emv-promo,
.emv-promo * {
	box-sizing: border-box;
}

html.emv-promo-lock,
html.emv-promo-lock body {
	overflow: hidden !important;
}

.emv-promo[hidden] {
	display: none !important;
}

.emv-promo {
	--emv-ink: #071a37;
	--emv-muted: #617086;
	--emv-blue: #0675e8;
	--emv-orange: #f47721;
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: grid;
	place-items: center;
	padding: 24px;
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	opacity: 0;
	visibility: hidden;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.emv-promo.is-open {
	opacity: 1;
	visibility: visible;
}

.emv-promo__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 18, 40, 0.76);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.emv-promo__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 56%) minmax(320px, 44%);
	width: min(1040px, calc(100vw - 48px));
	max-height: calc(100svh - 48px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 32px 90px rgba(0, 17, 45, 0.42);
	transform: translateY(18px) scale(0.985);
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.emv-promo.is-open .emv-promo__dialog {
	transform: translateY(0) scale(1);
}

.emv-promo__dialog--image-only {
	display: block;
	width: min(840px, calc(100vw - 48px));
}

.emv-promo__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(7, 26, 55, 0.08);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 22px rgba(0, 17, 45, 0.13);
	color: var(--emv-ink);
	font: 400 25px/1 Arial, sans-serif;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease;
}

.emv-promo__close:hover {
	background: #fff;
	transform: rotate(5deg) scale(1.06);
}

.emv-promo__close:focus-visible,
.emv-promo__visual-link:focus-visible,
.emv-promo__cta:focus-visible,
.emv-promo__decline:focus-visible {
	outline: 3px solid rgba(6, 117, 232, 0.38);
	outline-offset: 3px;
}

.emv-promo__visual {
	position: relative;
	min-width: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	/* The surrounding 4:3 panel stays fixed; images are never cropped. */
	background: #fff;
}

.emv-promo__visual-link {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.emv-promo__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	/* Preserve the full top and bottom of any uploaded artwork. A square or
	 * portrait image simply receives balanced side space inside the panel. */
	object-fit: contain;
	object-position: center;
	transition: opacity 160ms ease;
}

.emv-promo__visual-link:hover .emv-promo__image {
	opacity: 0.98;
}

.emv-promo__fallback {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: #fff;
}

.emv-promo__fallback::before,
.emv-promo__fallback::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	transform: rotate(-18deg);
}

.emv-promo__fallback::before {
	width: 82%;
	height: 25%;
	top: 9%;
	right: -20%;
}

.emv-promo__fallback::after {
	width: 96%;
	height: 18%;
	bottom: 9%;
	left: -27%;
}

.emv-promo__fallback-label {
	position: absolute;
	top: 12%;
	left: 10%;
	z-index: 1;
	padding: 8px 13px;
	border-radius: 999px;
	background: var(--emv-orange);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.emv-promo__fallback strong {
	position: relative;
	z-index: 1;
	font-size: clamp(110px, 18vw, 220px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.08em;
	text-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
}

.emv-promo__fallback i {
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: 12%;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--emv-orange), #ffd12f);
}

.emv-promo__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 34px 42px;
	background:
		radial-gradient(circle at 100% 0%, rgba(6, 117, 232, 0.06), transparent 36%),
		#fff;
	text-align: center;
}

.emv-promo__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0 0 13px;
	color: #bd4b0d;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.emv-promo__eyebrow span {
	display: block;
	width: 24px;
	height: 3px;
	border-radius: 999px;
	background: var(--emv-orange);
}

.emv-promo__content h2 {
	max-width: 100%;
	margin: 0;
	color: var(--emv-ink);
	font-size: clamp(32px, 3.25vw, 48px);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.045em;
	overflow-wrap: anywhere;
}

.emv-promo__subtitle {
	max-width: 33ch;
	margin: 15px 0 0;
	color: var(--emv-muted);
	font-size: 17px;
	line-height: 1.42;
}

.emv-promo__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 54px;
	margin: 24px 0 0;
	padding: 13px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #0980f5, #0566cc);
	box-shadow: 0 13px 28px rgba(6, 117, 232, 0.25);
	color: #fff !important;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: 0.025em;
	text-align: center;
	text-decoration: none !important;
	transition: transform 170ms ease, box-shadow 170ms ease;
}

.emv-promo__cta:hover {
	box-shadow: 0 16px 34px rgba(6, 117, 232, 0.34);
	transform: translateY(-2px);
}

.emv-promo__cta span {
	font-size: 18px;
	line-height: 1;
}

.emv-promo__decline {
	margin: 14px 0 0;
	padding: 4px 8px;
	border: 0;
	background: transparent;
	color: #64748b;
	font-size: 12px;
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.emv-promo__decline:hover {
	color: var(--emv-ink);
}

.emv-promo__validity {
	margin: 14px 0 0;
	color: #8995a6;
	font-size: 11px;
	line-height: 1.35;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 820px) {
	.emv-promo {
		padding: 12px;
	}

	.emv-promo__dialog,
	.emv-promo__dialog--image-only {
		display: grid;
		grid-template-columns: 1fr;
		width: min(560px, calc(100vw - 24px));
		max-height: calc(100svh - 24px);
		overflow-x: hidden;
		overflow-y: auto;
		border-radius: 18px;
	}

	.emv-promo__dialog--image-only {
		display: block;
		overflow: hidden;
	}

	.emv-promo__visual {
		width: 100%;
		aspect-ratio: 4 / 3;
	}

	.emv-promo__content {
		padding: 25px 24px 23px;
	}

	.emv-promo__content h2 {
		font-size: clamp(29px, 9vw, 42px);
		line-height: 1;
	}

	.emv-promo__subtitle {
		margin-top: 11px;
		font-size: 15px;
	}

	.emv-promo__cta {
		min-height: 50px;
		margin-top: 19px;
	}

	.emv-promo__close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 420px) {
	.emv-promo__content {
		padding: 22px 20px 20px;
	}

	.emv-promo__eyebrow {
		margin-bottom: 10px;
		font-size: 10px;
	}

	.emv-promo__decline,
	.emv-promo__validity {
		margin-top: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.emv-promo,
	.emv-promo__dialog,
	.emv-promo__image,
	.emv-promo__close,
	.emv-promo__cta {
		transition: none !important;
	}
}
