:root {
	color-scheme: dark;
	font-family:
		Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #0f1116;
	color: #f5f7fb;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at top, rgba(73, 106, 255, 0.18), transparent 38%),
		linear-gradient(180deg, #0f1116 0%, #121722 100%);
}

.shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 24px;
}

.card {
	width: min(100%, 520px);
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: rgba(18, 23, 34, 0.92);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8ea8ff;
}

h1 {
	margin: 0;
	font-size: 32px;
	line-height: 1.15;
}

.description {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(245, 247, 251, 0.82);
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 700;
	transition:
		transform 120ms ease,
		opacity 120ms ease,
		background 120ms ease,
		border-color 120ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: #6a7dff;
	color: #fff;
}

.button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.03);
	color: #f5f7fb;
}

.status {
	margin: 18px 0 0;
	font-size: 14px;
	color: rgba(245, 247, 251, 0.58);
}

@media (max-width: 560px) {
	.card {
		padding: 22px;
		border-radius: 20px;
	}

	h1 {
		font-size: 28px;
	}

	.actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}
}
