.hoa-popup[hidden] {
	display: none !important;
}

.hoa-popup {
	inset: 0;
	position: fixed;
	z-index: 999999;
}

.hoa-popup__backdrop {
	background: rgba(8, 18, 48, 0.56);
	inset: 0;
	position: absolute;
}

.hoa-popup__dialog {
	background:
		linear-gradient(rgba(18, 38, 92, 0.92), rgba(18, 38, 92, 0.92)),
		radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 52%),
		#12265c;
	border: 0;
	box-shadow: none;
	color: #f7f3ed;
	height: 100vh;
	inset: 0;
	overflow: auto;
	padding: 36px 24px 42px;
	position: absolute;
	width: 100vw;
}

.hoa-popup__close {
	appearance: none;
	background: transparent;
	border: 0;
	color: #f7f3ed;
	cursor: pointer;
	font-size: 34px;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 14px;
	top: 10px;
}

.hoa-popup__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	max-width: 355px;
	min-height: calc(100vh - 78px);
	text-align: center;
}

.hoa-popup__logo {
	align-items: center;
	background: #f7f3ed;
	display: inline-flex;
	justify-content: center;
	margin: 20px auto 28px;
	max-width: 120px;
	min-height: 74px;
	padding: 10px;
}

.hoa-popup__logo-image {
	display: block;
	height: auto;
	max-width: 100%;
}

.hoa-popup__title,
.hoa-popup__cta {
	color: #f7f3ed;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	letter-spacing: 0;
	margin: 0;
}

.hoa-popup__title {
	font-size: clamp(2rem, 6vw, 3.2rem);
	line-height: 0.96;
	margin-bottom: 12px;
}

.hoa-popup__cta {
	font-size: clamp(3.2rem, 12vw, 4.9rem);
	font-weight: 700;
	line-height: 0.9;
	margin-bottom: 30px;
}

.hoa-popup__button {
	align-items: center;
	border: 0;
	box-sizing: border-box;
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 0.95rem;
	justify-content: center;
	letter-spacing: 0.16em;
	margin: 0 auto;
	max-width: 280px;
	min-height: 60px;
	padding: 16px 24px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.2s ease, transform 0.2s ease;
	width: 280px;
}

.hoa-popup__button:hover,
.hoa-popup__button:focus {
	opacity: 0.92;
	transform: translateY(-1px);
}

.hoa-popup__button--primary {
	background: #f1efed;
	color: #0f2556;
	font-weight: 700;
	margin-bottom: 10px;
}

.hoa-popup__button--secondary {
	background: rgba(255, 255, 255, 0.16);
	color: #f7f3ed;
	cursor: pointer;
	font-weight: 400;
}

body.hoa-popup-is-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.hoa-popup__dialog {
		padding: 28px 20px 24px;
	}

	.hoa-popup__logo {
		margin-bottom: 22px;
		max-width: 104px;
	}

	.hoa-popup__button {
		min-height: 56px;
	}
}
