#rank-math-analytics-stats-wrapper{
	display: none !important;
}

/* ── Page loader ─────────────────────────────────────────────────────────── */
/* Critical rules are also inlined in <head> (land-tools.php wp_head priority 1)
   so the overlay is render-blocking. This copy is the readable source-of-truth. */

/* Body hidden until window.load fires (JS adds .lt-loaded to <body>).
   visibility:hidden keeps layout intact; the loader lives on <html> (injected
   by the head script before <body> exists) so it is naturally unaffected. */
body:not(.lt-loaded) { visibility: hidden !important; }

#lt-page-loader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	transition: opacity .45s ease, visibility .45s ease;
}

#lt-page-loader.lt-loader-done {
	opacity: 0;
	visibility: hidden !important;
	pointer-events: none;
}

/* Spinner track */
.lt-loader-ring {
	width: 56px;
	height: 56px;
	position: relative;
}

.lt-loader-ring::before,
.lt-loader-ring::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

/* Outer spinning arc */
.lt-loader-ring::before {
	border: 3.5px solid transparent;
	border-top-color: #4f46e5;
	border-right-color: #4f46e5;
	animation: lt-spin .7s linear infinite;
}

/* Inner pulsing dot */
.lt-loader-ring::after {
	inset: 14px;
	background: #4f46e5;
	border: none;
	animation: lt-pulse 1.4s ease-in-out infinite;
}

@keyframes lt-spin {
	to { transform: rotate(360deg); }
}

@keyframes lt-pulse {
	0%, 100% { transform: scale(.55); opacity: .25; }
	50%       { transform: scale(1);   opacity: 1;   }
}

/* Wordmark */
.lt-loader-label {
	margin-top: 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .05em;
	color: #4f46e5;
	opacity: .7;
	font-family: 'Inter', system-ui, sans-serif;
}

/* Dark mode — follows site toggle (.lt-dark on <html>), not OS preference */
.lt-dark #lt-page-loader  { background: #0f172a; }
.lt-dark .lt-loader-label { color: #818cf8; opacity: .8; }
