.ups-overlay[hidden] {
	display: none !important;
}

.ups-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	padding: 22px;
	background: transparent;
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	opacity: 0;
	transition: opacity .24s ease;
	box-sizing: border-box;
}

.ups-overlay.is-visible {
	opacity: 1;
}

.ups-dialog,
.ups-dialog * {
	box-sizing: border-box;
}

.ups-dialog {
	width: min(var(--ups-width), 96vw);
	max-height: calc(100vh - 44px);
	overflow: auto;
	overscroll-behavior: contain;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: var(--ups-radius);
	box-shadow: 0 32px 90px rgba(0, 0, 0, .42);
	color: var(--ups-text);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	transform: translateY(16px) scale(.985);
	transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.ups-overlay.is-visible .ups-dialog {
	transform: translateY(0) scale(1);
}

.ups-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 104px;
	padding: 20px 30px;
	background: #fff;
	color: #102839;
	border-radius: var(--ups-radius) var(--ups-radius) 0 0;
}

.ups-brand {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.ups-logo {
	display: block;
	width: auto;
	max-width: 240px;
	max-height: 64px;
	object-fit: contain;
}

.ups-site-name {
	color: var(--ups-primary);
	font-size: clamp(1.35rem, 2.7vw, 2rem);
	font-weight: 850;
	line-height: 1.05;
}

.ups-tagline {
	padding-left: 24px;
	border-left: 1px solid #dce3e8;
	color: #536879;
	font-size: clamp(.92rem, 1.7vw, 1.12rem);
	font-weight: 750;
	white-space: nowrap;
}

.ups-close {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	z-index: 5;
	display: block !important;
	flex: 0 0 42px !important;
	box-sizing: border-box !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	max-width: 42px !important;
	max-height: 42px !important;
	margin: 0 0 0 20px !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 50% !important;
	background: rgba(75, 82, 88, .88);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	aspect-ratio: 1 / 1;
	line-height: 0 !important;
	transition: transform .18s ease, background .18s ease;
}

.ups-close:hover,
.ups-close:focus-visible {
	background: rgba(47, 53, 58, .96);
	transform: rotate(3deg) scale(1.04);
	outline: none;
}

.ups-close span {
	position: absolute;
	top: 19px;
	left: 10px;
	width: 20px;
	height: 2px;
	background: #fff;
}

.ups-close span:first-child {
	transform: rotate(45deg);
}

.ups-close span:last-child {
	transform: rotate(-45deg);
}

.ups-hero {
	position: relative;
	isolation: isolate;
	min-height: min(560px, 68vh);
	display: grid;
	place-items: center;
	padding: clamp(22px, 3.2vw, 38px) clamp(20px, 3.2vw, 34px);
	background-image: var(--ups-bg);
	background-position: center center;
	background-size: cover;
	border-radius: 0;
	overflow: hidden;
}

.ups-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background: rgba(3, 18, 28, var(--ups-overlay));
}

.ups-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: none;
	pointer-events: none;
}

.ups-circle-stage {
	position: relative;
	display: grid;
	grid-template-columns: minmax(220px, .68fr) minmax(400px, 1.32fr);
	align-items: end;
	width: min(1080px, 100%);
	margin-inline: auto;
	text-align: center;
	filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .2));
}

.ups-main-circle,
.ups-offer-circle {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	aspect-ratio: 1 / 1;
	background: var(--ups-primary);
	border: clamp(8px, 1.15vw, 15px) solid var(--ups-accent);
	border-radius: 50% !important;
	color: #fff;
	font-style: italic;
	overflow: hidden;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .28);
}

.ups-main-circle {
	z-index: 1;
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	width: min(500px, 52vw);
	height: min(500px, 52vw);
	max-width: min(500px, 52vw);
	max-height: min(500px, 52vw);
	min-width: 0;
	min-height: 0;
	padding: 8.5% 9.5% 7.5%;
	overflow: visible;
}

.ups-offer-circle {
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
	justify-self: end;
	width: min(285px, 30vw);
	height: min(285px, 30vw);
	max-width: min(285px, 30vw);
	max-height: min(285px, 30vw);
	min-width: 0;
	min-height: 0;
	margin-right: -86px;
	margin-bottom: 8px;
	padding: 12%;
	text-align: center !important;
}

.ups-offer-circle > * {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center !important;
}

.ups-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	color: #fff600;
	font-size: clamp(1.8rem, 3.5vw, 2.75rem);
	font-style: italic;
	font-weight: 950;
	letter-spacing: -.025em;
	line-height: .95;
	text-wrap: balance;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .28);
}

.ups-title span {
	display: block;
}

.ups-title .ups-circle-white {
	margin: .12em 0;
	color: #fff;
	font-size: .63em;
}

.ups-circle-divider {
	display: none;
}

.ups-subheading {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 108%;
	margin: 4% -4% 0;
	color: #fff600;
	font-size: clamp(1.75rem, 3.55vw, 2.8rem);
	font-style: italic;
	font-weight: 950;
	letter-spacing: -.035em;
	line-height: .88;
	text-wrap: balance;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .28);
}

.ups-subheading strong,
.ups-subheading span {
	display: block;
}

.ups-subheading .ups-circle-white {
	margin: .18em 0;
	color: #fff;
	font-size: .68em;
	line-height: 1;
}

.ups-offer-kicker {
	display: block;
	margin-bottom: 3%;
	color: #fff;
	font-size: clamp(1.05rem, 2vw, 1.5rem);
	font-weight: 950;
	line-height: 1;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .28);
}

.ups-offer-title {
	display: block;
	color: #fff600;
	font-size: clamp(1.2rem, 2.15vw, 1.75rem);
	font-weight: 950;
	letter-spacing: -.035em;
	line-height: .92;
	text-wrap: balance;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .28);
}

.ups-disclaimer {
	max-width: 95%;
	margin: 5% auto 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: #fff;
	font-size: clamp(.6rem, .95vw, .76rem);
	font-style: italic;
	font-weight: 750;
	line-height: 1.05;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

.ups-button {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: calc(100% + 18%);
	max-width: none;
	min-height: 46px;
	margin-top: 4.5%;
	padding: 10px 18px;
	overflow: hidden;
	background: #69bf52 !important;
	border: 3px solid #fff;
	border-radius: 999px;
	box-shadow: 0 13px 24px rgba(0, 0, 0, .24);
	color: #fff !important;
	font-size: clamp(.78rem, 1.45vw, 1.05rem);
	font-style: normal;
	font-weight: 850;
	line-height: 1.15;
	text-decoration: none !important;
	white-space: nowrap;
	text-align: center;
	transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.ups-button::before {
	content: "";
	position: absolute;
	top: -35%;
	bottom: -35%;
	left: -55%;
	z-index: 2;
	width: 32%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
	transform: skewX(-22deg);
	pointer-events: none;
	animation: ups-button-shine 2.8s ease-in-out infinite;
}

@keyframes ups-button-shine {
	0%, 45% {
		left: -55%;
	}
	72%, 100% {
		left: 125%;
	}
}

.ups-button:hover,
.ups-button:focus-visible {
	background: #ee1c2a !important;
	color: #fff !important;
	box-shadow: 0 16px 28px rgba(238, 28, 42, .34);
	transform: translateY(-2px) scale(1.07);
	outline: 3px solid rgba(255, 255, 255, .42);
	outline-offset: 3px;
}

.ups-button span {
	flex: 0 0 auto;
	font-size: 1.25em;
	line-height: 1;
}

.ups-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 23px 30px;
	background: var(--ups-panel);
	border-radius: 0 0 var(--ups-radius) var(--ups-radius);
	color: #fff;
	font-size: clamp(.84rem, 1.5vw, 1rem);
	font-weight: 750;
	text-align: center;
}

.ups-benefits span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.ups-benefits b {
	color: var(--ups-accent);
	font-size: 1.15em;
}

body.ups-popup-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.ups-overlay {
		align-items: end;
		padding: 10px;
	}

	.ups-dialog {
		width: 100%;
		max-height: calc(100dvh - 20px);
		border-radius: min(var(--ups-radius), 24px);
	}

	.ups-header {
		min-height: 78px;
		padding: 12px 14px;
		border-radius: min(var(--ups-radius), 24px) min(var(--ups-radius), 24px) 0 0;
	}

	.ups-brand {
		gap: 10px;
	}

	.ups-logo {
		max-width: 145px;
		max-height: 48px;
	}

	.ups-tagline {
		display: none;
	}

	.ups-close {
		flex-basis: 36px !important;
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		min-height: 36px !important;
		max-width: 36px !important;
		max-height: 36px !important;
		margin-left: 10px !important;
	}

	.ups-close span {
		top: 16px;
		left: 8px;
		width: 18px;
	}

	.ups-hero {
		min-height: 0;
		padding: 20px 10px 24px;
		background-position: center bottom;
		border-radius: 0;
	}

	.ups-circle-stage {
		grid-template-columns: 1fr;
		align-items: center;
		justify-items: center;
		filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .18));
	}

	.ups-main-circle {
		grid-column: 1;
		grid-row: 1;
		justify-self: center;
		width: min(88vw, 380px);
		height: min(88vw, 380px);
		max-width: min(88vw, 380px);
		max-height: min(88vw, 380px);
		padding: 9% 9% 8%;
	}

	.ups-offer-circle {
		grid-column: 1;
		grid-row: 2;
		justify-self: center;
		width: min(68vw, 285px);
		height: min(68vw, 285px);
		max-width: min(68vw, 285px);
		max-height: min(68vw, 285px);
		margin: 8px 0 0;
		padding: 14% 9% 10%;
	}

	.ups-title {
		font-size: clamp(1.7rem, 9.2vw, 2.65rem);
		line-height: .96;
	}

	.ups-subheading {
		width: 110%;
		margin: 4% -5% 0;
		font-size: clamp(1.65rem, 8.5vw, 2.55rem);
	}

	.ups-offer-kicker {
		font-size: clamp(1.15rem, 6vw, 1.65rem);
	}

	.ups-offer-title {
		font-size: clamp(1.3rem, 7vw, 1.9rem);
	}

	.ups-disclaimer {
		margin-top: 4%;
		font-size: clamp(.62rem, 3.1vw, .82rem);
	}

	.ups-button {
		width: auto;
		min-height: 40px;
		margin-top: 4%;
		padding: 8px 16px;
		font-size: clamp(.68rem, 3.2vw, .85rem);
		white-space: normal;
	}

	.ups-benefits {
		grid-template-columns: 1fr;
		gap: 5px;
		padding: 14px 18px;
		border-radius: 0 0 min(var(--ups-radius), 24px) min(var(--ups-radius), 24px);
		font-size: .78rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ups-overlay,
	.ups-dialog,
	.ups-button,
	.ups-close {
		transition: none !important;
	}

	.ups-button::before {
		display: none;
		animation: none;
	}
}
