/* ==========================================================================
   Popup – Orca Bio
   ========================================================================== */

.orca-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 200px;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.orca-popup-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.orca-popup {
	position: relative;
	width: 630px;
	max-width: 90%;
	min-height: 300px;
	border-radius: 20px;
	padding: 55px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	text-align: center;
	transform: translateY(24px) scale(0.97);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	background-color: #fff;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

.orca-popup-overlay.is-active .orca-popup {
	transform: translateY(0) scale(1);
}

/* Close button */
.orca-popup__close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid currentColor;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: opacity 0.2s ease;
	z-index: 1;
}

.orca-popup__close:hover {
	opacity: 0.7;
}

.orca-popup__close svg {
	display: block;
}

/* Inner content */
.orca-popup__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

/* Logo */
.orca-popup__logo {
	max-width: 280px;
	width: auto;
	height: auto;
	margin-bottom: 50px;
}

/* Headline */
.orca-popup__headline {
	color: #0C486D;
	text-align: center;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 37px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px;
	letter-spacing: -0.74px;
	margin: 0 0 4px;
}

/* Subheadline */
.orca-popup__subheadline {
	color: #0C486D;
	text-align: center;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	margin: 0 0 8px;
}

/* WYSIWYG content */
.orca-popup__content {
	font-size: 16px;
	line-height: 1.6;
	color: #4a5568;
	margin-bottom: 8px;
}

.orca-popup__content *:last-child {
	margin-bottom: 0;
}

/* Buttons */
.orca-popup__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}

.orca-popup__btn {
	display: inline-block;
	padding: 10px 18px;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.07px;
	text-decoration: none;
	border: 2px solid;
	border-radius: 6px;
	background: transparent;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.orca-popup__btn:hover {
	opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
	.orca-popup {
		padding: 36px 24px;
		border-radius: 14px;
	}

	.orca-popup__logo {
		max-width: 200px;
	}

	.orca-popup__headline {
		font-size: 26px;
		line-height: 36px;
		letter-spacing: -0.52px;
	}

	.orca-popup__subheadline {
		font-size: 18px;
		line-height: 26px;
	}

	.orca-popup__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.orca-popup__btn {
		text-align: center;
	}
}
