:root {
	color-scheme: dark;
	font-family:
		"Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #050708;
	color: rgba(255, 255, 255, 0.92);
}

* {
	box-sizing: border-box;
}

body {
	position: relative;
	display: grid;
	min-height: 100vh;
	margin: 0;
	overflow: hidden;
	place-items: center;
	background: #050708;
}

body::before {
	position: fixed;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(0, 229, 255, 0.11) 1px, transparent 1.2px);
	background-size: 24px 24px;
	content: "";
	pointer-events: none;
}

body::after {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.24);
	content: "";
	pointer-events: none;
}

main {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(27.5rem, calc(100% - 3rem));
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.logo {
	display: block;
	width: 82px;
	height: auto;
}

.eyebrow {
	margin: 20px 0 0;
	color: #00e5ff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

h1 {
	margin: 8px 0 0;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	text-transform: uppercase;
}

.description {
	margin: 9px 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
	font-size: 13px;
	line-height: 1.5;
}

.status {
	width: 100%;
	margin-top: 30px;
	padding: 18px;
	border: 1px solid rgba(0, 229, 255, 0.4);
	border-radius: 8px;
	background: rgba(9, 13, 16, 0.96);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
	text-align: left;
}

.status-title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 800;
}

.indicator {
	width: 8px;
	height: 8px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #00e5ff;
	box-shadow: 0 0 8px rgba(0, 229, 255, 0.55);
}

.action {
	display: inline-flex;
	min-height: 36px;
	margin-top: 14px;
	align-items: center;
	justify-content: center;
	padding: 0 13px;
	border: 1px solid #00e5ff;
	border-radius: 8px;
	background: #00e5ff;
	color: #0a0d0f;
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
	transition:
		filter 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.action:hover {
	filter: brightness(1.07);
	box-shadow: 0 0 8px rgba(0, 229, 255, 0.35);
	transform: translateY(-1px);
}

.action:focus-visible {
	outline: 2px solid white;
	outline-offset: 2px;
}

.action[hidden] {
	display: none;
}

.quiet {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.3);
	font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
	font-size: 10px;
	line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
	.action {
		transition: none;
	}
}
