/* Limronix Launch & Maintenance Manager — public page */
:where(.lmx-public-body, .lmx-public-body *) {
	box-sizing: border-box;
}

html:has(.lmx-public-body) {
	margin: 0 !important;
	background: var(--lmx-background, #07111f);
}

body.lmx-public-body {
	margin: 0;
	min-width: 320px;
	min-height: 100vh;
	background: var(--lmx-background, #07111f);
	color: #fff;
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.lmx-public-body button,
.lmx-public-body input {
	font: inherit;
}

.lmx-public-body button,
.lmx-public-body a {
	-webkit-tap-highlight-color: transparent;
}

.lmx-public-page {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	background:
		radial-gradient(circle at 48% 38%, color-mix(in srgb, var(--lmx-navy) 68%, transparent), transparent 48%),
		var(--lmx-background, #07111f);
}

.lmx-public-page::before,
.lmx-public-page::after {
	position: absolute;
	inset: 0;
	z-index: -3;
	content: "";
	pointer-events: none;
}

.lmx-public-page::before {
	background-image: var(--lmx-background-image, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transform: scale(1.025);
}

.lmx-public-page::after {
	z-index: -2;
	background:
		linear-gradient(115deg, var(--lmx-navy, #202c45) 0%, var(--lmx-background, #07111f) 72%),
		var(--lmx-navy, #202c45);
	opacity: var(--lmx-overlay, .78);
}

.lmx-grid-pattern {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
	mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
	pointer-events: none;
}

.lmx-ambient {
	position: absolute;
	z-index: -1;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	filter: blur(10px);
	opacity: .14;
	pointer-events: none;
}

.lmx-ambient-one {
	top: -230px;
	right: -100px;
	background: var(--lmx-accent, #7cda24);
}

.lmx-ambient-two {
	bottom: -280px;
	left: -150px;
	width: 520px;
	height: 520px;
	background: #3778ff;
	opacity: .10;
}

.lmx-public-header,
.lmx-public-footer {
	position: relative;
	z-index: 2;
	display: flex;
	width: min(1240px, calc(100% - 56px));
	margin-inline: auto;
}

.lmx-public-header {
	align-items: center;
	justify-content: space-between;
	padding: 30px 0 18px;
}

.lmx-public-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	color: #fff;
	text-decoration: none;
}

.lmx-public-logo img {
	display: block;
	width: auto;
	max-width: min(230px, 46vw);
	height: 52px;
	object-fit: contain;
}

.lmx-public-logo strong {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 3.5px;
}

.lmx-text-mark {
	position: relative;
	display: inline-grid;
	grid-template-columns: repeat(2, 8px);
	grid-template-rows: repeat(2, 8px);
	gap: 3px;
	width: 27px;
	height: 27px;
	transform: rotate(45deg);
}

.lmx-text-mark i {
	display: block;
	border-radius: 2px;
	background: var(--lmx-accent, #7cda24);
}

.lmx-text-mark i:nth-child(2) {
	grid-row: span 2;
}

.lmx-text-mark i:nth-child(3) {
	background: #fff;
}

.lmx-mode-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
	background: rgba(6, 16, 30, .38);
	box-shadow: inset 0 1px rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .80);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.lmx-mode-pill > span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lmx-accent, #7cda24);
	box-shadow: 0 0 0 5px color-mix(in srgb, var(--lmx-accent) 16%, transparent), 0 0 15px color-mix(in srgb, var(--lmx-accent) 58%, transparent);
	animation: lmx-pulse 2s ease-in-out infinite;
}

@keyframes lmx-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(.78); opacity: .62; }
}

.lmx-public-main {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 100%;
	padding: 26px 24px 34px;
}

.lmx-public-card {
	position: relative;
	width: min(880px, 100%);
	padding: clamp(38px, 5vw, 68px) clamp(24px, 6vw, 76px) clamp(32px, 5vw, 58px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 26px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035));
	box-shadow:
		0 38px 90px rgba(0, 0, 0, .34),
		inset 0 1px rgba(255, 255, 255, .09);
	text-align: center;
	backdrop-filter: blur(22px) saturate(112%);
}

.lmx-card-shine {
	position: absolute;
	top: -90px;
	left: 50%;
	width: 460px;
	height: 150px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: var(--lmx-accent, #7cda24);
	filter: blur(85px);
	opacity: .14;
	pointer-events: none;
}

.lmx-public-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-bottom: 18px;
	color: var(--lmx-accent, #7cda24);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2.6px;
	text-transform: uppercase;
}

.lmx-public-eyebrow svg {
	width: 18px;
	height: 18px;
	filter: drop-shadow(0 0 10px color-mix(in srgb, var(--lmx-accent) 60%, transparent));
}

.lmx-public-title {
	max-width: 760px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(42px, 7vw, 76px);
	font-weight: 900;
	letter-spacing: clamp(-3.5px, -.055em, -1.6px);
	line-height: .99;
	text-wrap: balance;
}

.lmx-public-description {
	max-width: 675px;
	margin: 25px auto 0;
	color: rgba(255, 255, 255, .75);
	font-size: clamp(16px, 1.9vw, 19px);
	font-weight: 430;
	line-height: 1.72;
	text-wrap: balance;
}

.lmx-countdown {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	max-width: 570px;
	margin: 30px auto 0;
}

.lmx-countdown > div {
	padding: 16px 8px 13px;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 14px;
	background: rgba(2, 10, 22, .27);
}

.lmx-countdown strong,
.lmx-countdown span {
	display: block;
}

.lmx-countdown strong {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 850;
	letter-spacing: -1.5px;
	line-height: 1;
}

.lmx-countdown span {
	margin-top: 7px;
	color: rgba(255, 255, 255, .55);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.lmx-public-actions {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 14px;
	margin-top: 32px;
}

.lmx-primary-action,
.lmx-email-action {
	display: inline-flex;
	align-items: center;
	min-height: 58px;
	border-radius: 11px;
	text-decoration: none;
	transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.lmx-primary-action {
	justify-content: center;
	gap: 10px;
	padding: 0 22px;
	border: 1px solid var(--lmx-accent, #7cda24);
	background: var(--lmx-accent, #7cda24);
	box-shadow: 0 14px 28px color-mix(in srgb, var(--lmx-accent) 17%, transparent);
	color: #152038;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .2px;
}

.lmx-primary-action svg {
	width: 19px;
	height: 19px;
}

.lmx-primary-action svg:last-child {
	width: 17px;
	margin-left: 2px;
	transition: transform .22s ease;
}

.lmx-primary-action:hover,
.lmx-primary-action:focus-visible {
	transform: translateY(-2px);
	border-color: #fff;
	background: #fff;
	box-shadow: 0 17px 34px rgba(0, 0, 0, .24);
	color: var(--lmx-navy, #202c45);
	outline: none;
}

.lmx-primary-action:hover svg:last-child,
.lmx-primary-action:focus-visible svg:last-child {
	transform: translateX(3px);
}

.lmx-email-action {
	gap: 11px;
	padding: 7px 16px 7px 9px;
	border: 1px solid rgba(255, 255, 255, .14);
	background: rgba(255, 255, 255, .055);
	color: #fff;
	text-align: left;
}

.lmx-email-action:hover,
.lmx-email-action:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(124, 218, 36, .52);
	background: rgba(255, 255, 255, .10);
	outline: none;
}

.lmx-email-icon {
	display: grid;
	place-items: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 9px;
	background: rgba(124, 218, 36, .12);
	color: var(--lmx-accent, #7cda24);
}

.lmx-email-icon svg {
	width: 20px;
	height: 20px;
}

.lmx-email-action > span:last-child {
	display: grid;
	gap: 2px;
}

.lmx-email-action small {
	color: rgba(255, 255, 255, .50);
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .65px;
	text-transform: uppercase;
}

.lmx-email-action strong {
	font-size: 13px;
	font-weight: 750;
}

.lmx-public-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 28px auto 0;
	color: rgba(255, 255, 255, .48);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .55px;
}

.lmx-public-note > span {
	flex: 0 0 auto;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--lmx-accent, #7cda24);
}

.lmx-public-footer {
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 0 25px;
	color: rgba(255, 255, 255, .44);
	font-size: 11px;
}

.lmx-public-footer p {
	margin: 0;
}

.lmx-login-trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, .48);
	font-size: 11px;
	font-weight: 650;
	cursor: pointer;
	transition: color .2s ease;
}

.lmx-login-trigger svg {
	width: 14px;
	height: 14px;
}

.lmx-login-trigger:hover,
.lmx-login-trigger:focus-visible {
	color: var(--lmx-accent, #7cda24);
	outline: none;
}

.lmx-admin-preview-notice {
	position: fixed;
	top: 12px;
	left: 50%;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 12px;
	transform: translateX(-50%);
	border: 1px solid rgba(124, 218, 36, .38);
	border-radius: 8px;
	background: rgba(11, 24, 43, .94);
	box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
	color: rgba(255, 255, 255, .76);
	font-size: 10px;
	font-weight: 700;
	white-space: nowrap;
}

.lmx-admin-preview-notice span {
	color: var(--lmx-accent, #7cda24);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 1px;
}

/* Secure access modal */
.lmx-access-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .24s ease, visibility .24s ease;
}

.lmx-access-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.lmx-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 8, 17, .82);
	backdrop-filter: blur(8px);
}

.lmx-modal-panel {
	position: relative;
	z-index: 1;
	width: min(470px, 100%);
	padding: 36px;
	transform: translateY(12px) scale(.985);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 20px;
	background: linear-gradient(150deg, #18243b, #0b1526);
	box-shadow: 0 35px 100px rgba(0, 0, 0, .55);
	color: #fff;
	transition: transform .24s ease;
}

.lmx-access-modal.is-open .lmx-modal-panel {
	transform: translateY(0) scale(1);
}

.lmx-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 50%;
	background: rgba(255, 255, 255, .04);
	color: rgba(255, 255, 255, .65);
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
}

.lmx-modal-close:hover,
.lmx-modal-close:focus-visible {
	border-color: rgba(255, 255, 255, .24);
	color: #fff;
	outline: none;
}

.lmx-modal-lock {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 19px;
	border: 1px solid color-mix(in srgb, var(--lmx-accent) 32%, transparent);
	border-radius: 13px;
	background: color-mix(in srgb, var(--lmx-accent) 10%, transparent);
	color: var(--lmx-accent, #7cda24);
}

.lmx-modal-lock svg {
	width: 24px;
	height: 24px;
}

.lmx-modal-kicker {
	margin: 0 0 8px;
	color: var(--lmx-accent, #7cda24);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 2px;
}

.lmx-modal-panel h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 850;
	letter-spacing: -1px;
	line-height: 1.1;
}

.lmx-modal-copy {
	margin: 13px 0 23px;
	color: rgba(255, 255, 255, .64);
	font-size: 14px;
	line-height: 1.65;
}

.lmx-preview-error {
	margin: 0 0 17px;
	padding: 11px 13px;
	border: 1px solid rgba(255, 103, 103, .25);
	border-radius: 8px;
	background: rgba(255, 74, 74, .09);
	color: #ffb4b4;
	font-size: 12px;
	line-height: 1.5;
}

.lmx-passcode-form label {
	display: block;
	margin-bottom: 7px;
	color: rgba(255, 255, 255, .78);
	font-size: 11px;
	font-weight: 750;
}

.lmx-passcode-input {
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	background: rgba(0, 0, 0, .18);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.lmx-passcode-input:focus-within {
	border-color: color-mix(in srgb, var(--lmx-accent) 58%, transparent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--lmx-accent) 8%, transparent);
}

.lmx-passcode-input input {
	width: 100%;
	min-width: 0;
	padding: 0 12px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 14px;
}

.lmx-passcode-input input::placeholder {
	color: rgba(255, 255, 255, .30);
}

.lmx-passcode-input button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 43px;
	padding: 0 15px;
	border: 0;
	border-radius: 7px;
	background: var(--lmx-accent, #7cda24);
	color: #152038;
	font-size: 12px;
	font-weight: 850;
	cursor: pointer;
}

.lmx-passcode-input button svg {
	width: 15px;
	height: 15px;
}

.lmx-modal-divider {
	position: relative;
	display: grid;
	place-items: center;
	margin: 20px 0;
	color: rgba(255, 255, 255, .35);
	font-size: 10px;
	text-transform: uppercase;
}

.lmx-modal-divider::before {
	position: absolute;
	right: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, .10);
	content: "";
}

.lmx-modal-divider span {
	position: relative;
	padding: 0 10px;
	background: #101b2e;
}

.lmx-wordpress-login {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 47px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 9px;
	background: rgba(255, 255, 255, .045);
	color: #fff;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease;
}

.lmx-wordpress-login:hover,
.lmx-wordpress-login:focus-visible {
	border-color: rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .09);
	outline: none;
}

.dashicons-wordpress-alt {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid rgba(255, 255, 255, .68);
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 13px;
	font-weight: 700;
}

.lmx-modal-help {
	margin: 17px 0 0;
	color: rgba(255, 255, 255, .36);
	font-size: 10px;
	line-height: 1.5;
	text-align: center;
}

body.lmx-modal-locked {
	overflow: hidden;
}

@media (max-width: 760px) {
	.lmx-public-header,
	.lmx-public-footer {
		width: min(100% - 32px, 1240px);
	}

	.lmx-public-header {
		padding-top: 20px;
	}

	.lmx-public-main {
		padding: 20px 16px 26px;
	}

	.lmx-public-card {
		border-radius: 20px;
	}

	.lmx-public-actions {
		flex-direction: column;
		align-items: stretch;
		max-width: 440px;
		margin-right: auto;
		margin-left: auto;
	}

	.lmx-primary-action,
	.lmx-email-action {
		width: 100%;
	}

	.lmx-email-action {
		justify-content: center;
		padding-right: 14px;
	}
}

@media (max-width: 540px) {
	.lmx-public-logo strong {
		font-size: 17px;
		letter-spacing: 2.5px;
	}

	.lmx-public-logo img {
		height: 43px;
	}

	.lmx-mode-pill {
		gap: 7px;
		padding: 8px 10px;
		font-size: 8px;
		letter-spacing: .75px;
	}

	.lmx-mode-pill > span {
		width: 6px;
		height: 6px;
	}

	.lmx-public-card {
		padding: 34px 19px 29px;
	}

	.lmx-public-eyebrow {
		font-size: 10px;
		letter-spacing: 1.8px;
	}

	.lmx-public-title {
		font-size: clamp(38px, 12vw, 54px);
	}

	.lmx-public-description {
		margin-top: 19px;
		font-size: 15px;
		line-height: 1.62;
	}

	.lmx-countdown {
		gap: 6px;
		margin-top: 24px;
	}

	.lmx-countdown > div {
		padding: 12px 3px 10px;
		border-radius: 10px;
	}

	.lmx-countdown span {
		font-size: 7px;
		letter-spacing: .65px;
	}

	.lmx-public-note {
		align-items: flex-start;
		font-size: 9px;
		line-height: 1.5;
		text-align: left;
	}

	.lmx-public-note > span {
		margin-top: 4px;
	}

	.lmx-public-footer {
		flex-direction: column;
		gap: 5px;
		padding-top: 14px;
		text-align: center;
	}

	.lmx-modal-panel {
		padding: 29px 20px 24px;
		border-radius: 17px;
	}

	.lmx-passcode-input {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.lmx-passcode-input input {
		min-height: 43px;
	}

	.lmx-passcode-input button {
		justify-content: center;
	}

	.lmx-admin-preview-notice {
		top: 7px;
		max-width: calc(100% - 20px);
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lmx-public-body *,
	.lmx-public-body *::before,
	.lmx-public-body *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
