:root {
	--bg-deep: #07060f;
	--bg-glow: #1a1035;
	--text: #f4f0ff;
	--muted: #a89ec4;
	--accent: #ff6b4a;
	--accent-2: #7c5cff;
	--card: rgba(18, 14, 32, 0.72);
	--border: rgba(255, 255, 255, 0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	background: var(--bg-deep);
	color: var(--text);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	line-height: 1.55;
	overflow: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}

body::before {
	width: 55vw;
	height: 55vw;
	top: -20%;
	left: -10%;
	background: radial-gradient(circle, rgba(124, 92, 255, 0.35), transparent 70%);
	animation: drift 14s ease-in-out infinite alternate;
}

body::after {
	width: 45vw;
	height: 45vw;
	bottom: -15%;
	right: -10%;
	background: radial-gradient(circle, rgba(255, 107, 74, 0.28), transparent 70%);
	animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(4%, 6%) scale(1.08); }
}

.card {
	position: relative;
	z-index: 1;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem 2.25rem 2rem;
	max-width: 28rem;
	width: 100%;
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	text-align: center;
}

.eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1.1rem;
	animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

h1 {
	font-size: clamp(2rem, 8vw, 2.75rem);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 0.85rem;
	background: linear-gradient(120deg, #fff 0%, #c4b5fd 45%, #ff8f6b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.tagline {
	font-size: 1.05rem;
	color: var(--text);
	margin-bottom: 0.65rem;
	font-weight: 500;
}

.hint {
	font-size: 0.92rem;
	color: var(--muted);
	max-width: 22rem;
	margin: 0 auto 1.5rem;
}

.dots {
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-bottom: 1.5rem;
}

.dots span {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--accent-2);
	animation: bounce 1.2s ease-in-out infinite;
}

.dots span:nth-child(2) { animation-delay: 0.15s; }
.dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
	0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
	40% { transform: translateY(-5px); opacity: 1; }
}

footer {
	font-size: 0.75rem;
	color: var(--muted);
	opacity: 0.85;
}

.card--quiet h1 {
	font-size: clamp(1.6rem, 6vw, 2.1rem);
}

.card--quiet .eyebrow {
	color: var(--accent-2);
}
