*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body.nmr-landing {
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	color: #f4f6fb;
	background: #0b1020;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
}

.nmr-bg {
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.35), transparent 45%),
		radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.25), transparent 40%),
		radial-gradient(circle at 50% 100%, rgba(34, 211, 238, 0.2), transparent 50%),
		linear-gradient(160deg, #0b1020 0%, #151b33 50%, #0f172a 100%);
	z-index: 0;
}

.nmr-card {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	padding: 2.25rem 2rem 2rem;
	border-radius: 1.25rem;
	background: rgba(15, 23, 42, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.2);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(14px);
	text-align: center;
	animation: nmr-fade-in 0.6s ease-out;
}

@keyframes nmr-fade-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nmr-badge {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(99, 102, 241, 0.2);
	color: #c7d2fe;
	border: 1px solid rgba(129, 140, 248, 0.35);
}

.nmr-title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.5rem, 4vw, 1.85rem);
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.nmr-text {
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #cbd5e1;
}

.nmr-countdown-intro {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	color: #94a3b8;
}

.nmr-timer {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.nmr-seconds {
	font-size: 3.25rem;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, #a5b4fc, #f9a8d4, #67e8f9);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-variant-numeric: tabular-nums;
}

.nmr-seconds-label {
	font-size: 1.1rem;
	color: #94a3b8;
}

.nmr-progress {
	height: 6px;
	width: 100%;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.2);
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.nmr-progress-bar {
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, #6366f1, #ec4899, #22d3ee);
	transition: width 1s linear;
}

.nmr-button {
	display: inline-block;
	padding: 0.85rem 1.5rem;
	border-radius: 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nmr-button:hover,
.nmr-button:focus {
	transform: translateY(-1px);
	box-shadow: 0 14px 36px rgba(99, 102, 241, 0.45);
	color: #fff;
}

.nmr-footnote {
	margin: 1.25rem 0 0;
	font-size: 0.85rem;
	color: #64748b;
}
