/* Puratide Labs Store — verification gate overlay */

/* Branding defaults on :root so inline overrides (emitted on :root, enqueued
   later) win. Don't redeclare these on .pls-gate. */
:root {
	--pls-accent: #1a7f6b;
	--pls-accent-contrast: #ffffff;
}

.pls-gate {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

/* Lock scroll while the gate is open */
html.pls-gate-open,
body.pls-gate-open {
	overflow: hidden !important;
}

.pls-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 14, 16, 0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.pls-gate__panel {
	position: relative;
	width: 100%;
	max-width: 480px;
	background: #fff;
	color: #111315;
	border-radius: 18px;
	padding: 40px 34px 32px;
	text-align: center;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	animation: pls-gate-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pls-gate-in {
	from { opacity: 0; transform: translateY(14px) scale(0.98); }
	to { opacity: 1; transform: none; }
}

.pls-gate__logo {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pls-accent);
	margin-bottom: 18px;
}

.pls-gate__heading {
	font-size: 1.6rem;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
	font-weight: 700;
}

.pls-gate__body {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #4b5563;
	margin: 0 0 22px;
}

.pls-gate__confirm {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #1f2937;
	background: #f6f7f9;
	border: 1px solid #e7e9ec;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 22px;
	cursor: pointer;
}

.pls-gate__confirm input {
	margin-top: 2px;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	accent-color: var(--pls-accent);
}

.pls-gate__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pls-gate__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	transition: filter 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.pls-gate__btn--enter {
	background: var(--pls-accent);
	color: var(--pls-accent-contrast);
}

.pls-gate__btn--enter:hover:not(:disabled) { filter: brightness(0.92); }

.pls-gate__btn--enter:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.pls-gate__btn--exit {
	background: transparent;
	color: #6b7280;
	border-color: #e7e9ec;
}

.pls-gate__btn--exit:hover {
	background: #f6f7f9;
	color: #111315;
}

@media (max-width: 480px) {
	.pls-gate__panel { padding: 32px 22px 26px; }
	.pls-gate__heading { font-size: 1.4rem; }
}
