:root {
	color-scheme: light;
	--bg: #f8f7f2;
	--bg-2: #ffffff;
	--text: #151515;
	--muted: rgba(21, 21, 21, 0.64);
	--accent: #5b6cff;
	--accent-soft: rgba(91, 108, 255, 0.12);
	--border: rgba(21, 21, 21, 0.08);
	--shadow: 0 24px 80px rgba(20, 20, 20, 0.08);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	min-height: 100vh;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(91, 108, 255, 0.08), transparent 30%),
		radial-gradient(circle at bottom right, rgba(21, 21, 21, 0.05), transparent 28%),
		linear-gradient(180deg, var(--bg-2), var(--bg));
	overflow-x: hidden;
}

.page {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 2rem;
}

.hero {
	position: relative;
	z-index: 1;
	width: min(100%, 44rem);
	padding: clamp(2rem, 5vw, 4rem);
	text-align: center;
	border: 1px solid var(--border);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--accent);
}

h1 {
	margin: 0;
	font-size: clamp(3rem, 11vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: -0.06em;
}

.headline {
	margin: 1rem 0 0;
	font-size: clamp(1.25rem, 2.8vw, 1.65rem);
	font-weight: 600;
	color: var(--text);
}

.supporting-text {
	max-width: 32rem;
	margin: 0.9rem auto 0;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--muted);
}

.socials {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.95rem 1.15rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	text-decoration: none;
	color: var(--text);
	background: rgba(255, 255, 255, 0.8);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link svg {
	width: 1.1rem;
	height: 1.1rem;
	fill: currentColor;
	flex: 0 0 auto;
}

.social-link:hover,
.social-link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(91, 108, 255, 0.28);
	background: #fff;
	box-shadow: 0 10px 30px rgba(91, 108, 255, 0.14);
	outline: none;
}

.orb {
	position: absolute;
	border-radius: 999px;
	filter: blur(8px);
	pointer-events: none;
}

.orb-one {
	top: 8%;
	left: 10%;
	width: clamp(10rem, 18vw, 18rem);
	height: clamp(10rem, 18vw, 18rem);
	background: rgba(91, 108, 255, 0.12);
}

.orb-two {
	right: 8%;
	bottom: 10%;
	width: clamp(8rem, 15vw, 14rem);
	height: clamp(8rem, 15vw, 14rem);
	background: rgba(21, 21, 21, 0.05);
}

@media (max-width: 640px) {
	.page {
		padding: 1rem;
	}

	.hero {
		padding: 1.5rem;
		border-radius: 24px;
	}

	.social-link {
		width: 100%;
		justify-content: center;
	}
}
