.strike-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: clamp(14px, 3vw, 34px);
	font-family: "Montserrat", sans-serif;
}

.strike-modal.is-hidden {
	display: none;
}

.strike-modal.is-closing .strike-modal__backdrop {
	animation: strikeBackdropOut 260ms ease forwards;
}

.strike-modal.is-closing .strike-modal__panel {
	animation: strikePanelOut 320ms cubic-bezier(.5, 0, .2, 1) forwards;
}

.strike-modal__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, rgba(255,255,255,.1), rgba(0, 17, 35, .76) 58%),
		rgba(0, 12, 26, .68);
	backdrop-filter: blur(7px);
	animation: strikeBackdropIn 320ms ease both;
}

.strike-modal__panel {
	position: relative;
	box-sizing: border-box;
	width: min(1040px, 96vw);
	max-height: min(94vh, 860px);
	padding: clamp(10px, 1.8vw, 18px);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 26px 80px rgba(0, 0, 0, .38), 0 0 0 1px rgba(255,255,255,.5);
	overflow: auto;
	overscroll-behavior: contain;
	touch-action: none;
	animation: strikePanelIn 520ms cubic-bezier(.16, 1, .3, 1) both;
}

.strike-modal__eyebrow {
	margin: 2px 52px 10px 8px;
	color: #091f3b;
	font-size: clamp(13px, 1.6vw, 16px);
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.strike-modal__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(52vh, 540px);
	object-fit: contain;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 32px rgba(4, 17, 35, .16);
}

.strike-modal__complaint {
	display: grid;
	box-sizing: border-box;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(14px, 2.4vw, 26px);
	align-items: center;
	margin-top: 14px;
	padding: clamp(14px, 2vw, 20px);
	border: 2px solid rgba(179, 12, 29, .16);
	border-left: 7px solid #b30c1d;
	border-radius: 18px;
	background: linear-gradient(135deg, #f4fbff 0%, #fff7f4 100%);
	box-shadow: 0 12px 34px rgba(4, 17, 35, .1);
}

.strike-modal__complaint-text {
	color: #091f3b;
	font-size: clamp(15px, 1.7vw, 18px);
	line-height: 1.45;
}

.strike-modal__complaint-title {
	display: block;
	margin-bottom: 6px;
	color: #b30c1d;
	font-size: clamp(18px, 2.4vw, 24px);
	font-weight: 900;
}

.strike-modal__complaint-link {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 15px;
	border-radius: 999px;
	background: #b30c1d;
	color: #ffffff;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 9px 22px rgba(179, 12, 29, .22);
}

.strike-modal__complaint-link:hover,
.strike-modal__complaint-link:focus-visible {
	background: #091f3b;
	outline: 3px solid rgba(179, 12, 29, .24);
}

.strike-modal__qr-link {
	display: block;
	padding: 9px;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(4, 17, 35, .14);
}

.strike-modal__qr {
	display: block;
	width: clamp(118px, 15vw, 156px);
	height: clamp(118px, 15vw, 156px);
	object-fit: contain;
	border-radius: 10px;
}

.strike-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: #091f3b;
	color: #ffffff;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.strike-modal__close:hover,
.strike-modal__close:focus-visible {
	background: #b30c1d;
	outline: 3px solid rgba(179, 12, 29, .25);
}

.strike-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 14px;
}

.strike-modal__button {
	border: 2px solid #091f3b;
	border-radius: 999px;
	padding: 10px 16px;
	background: #091f3b;
	color: #ffffff;
	font-weight: 800;
	cursor: pointer;
}

.strike-modal__button:hover,
.strike-modal__button:focus-visible {
	background: #b30c1d;
	border-color: #b30c1d;
	outline: 3px solid rgba(179, 12, 29, .22);
}

.strike-modal__button--ghost {
	background: #ffffff;
	color: #091f3b;
}

.strike-modal__hint {
	margin: 10px 0 0 0;
	color: #44556b;
	font-size: 13px;
	text-align: center;
}

body.strike-modal-open {
	overflow: hidden;
}

@keyframes strikeBackdropIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes strikeBackdropOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes strikePanelIn {
	from {
		opacity: 0;
		transform: translateY(32px) scale(.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes strikePanelOut {
	from {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	to {
		opacity: 0;
		transform: translateY(70px) scale(.96);
	}
}

@media (max-width: 700px) {
	.strike-modal {
		place-content: start center;
		place-items: start center;
		padding: 10px;
		overflow: auto;
	}

	.strike-modal__panel {
		width: 100%;
		max-height: calc(100vh - 20px);
		max-height: calc(100svh - 20px);
		padding: 9px;
		border-radius: 18px;
	}

	.strike-modal__eyebrow {
		margin-bottom: 7px;
		font-size: 12px;
	}

	.strike-modal__image {
		max-height: 42vh;
		border-radius: 12px;
	}

	.strike-modal__complaint {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 10px;
		padding: 11px;
		text-align: center;
	}

	.strike-modal__complaint-text {
		font-size: 14px;
		line-height: 1.35;
	}

	.strike-modal__complaint-title {
		font-size: 18px;
	}

	.strike-modal__complaint-link {
		margin-top: 8px;
		padding: 9px 13px;
	}

	.strike-modal__qr-link {
		justify-self: center;
		padding: 7px;
	}

	.strike-modal__qr {
		width: 128px;
		height: 128px;
	}

	.strike-modal__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		margin-top: 10px;
	}

	.strike-modal__button {
		width: 100%;
	}

	.strike-modal__hint {
		margin-top: 6px;
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.strike-modal__backdrop,
	.strike-modal__panel,
	.strike-modal.is-closing .strike-modal__backdrop,
	.strike-modal.is-closing .strike-modal__panel {
		animation: none;
	}
}
