:root {
	--color-bg: #0a0a0b;
	--color-surface: #141416;
	--color-border: #27272a;
	--color-text-primary: #fafafa;
	--color-text-secondary: #a1a1aa;
	--color-accent: #e11d63;
	--color-accent-muted: #be185d;
	--font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	background-color: var(--color-bg);
}

body {
	min-height: 100vh;
	font-family: var(--font-sans);
	color: var(--color-text-primary);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
}

.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	background-color: var(--color-bg);
}

.bg-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(225, 29, 99, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.main {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 1rem;
	position: relative;
}

.content {
	max-width: 42rem;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.avatar-wrap {
	display: flex;
	justify-content: center;
}

.avatar {
	width: 8rem;
	height: 8rem;
	border-radius: 9999px;
	object-fit: cover;
	border: 1px solid var(--color-border);
	box-shadow: 0 10px 15px -3px rgba(225, 29, 99, 0.2), 0 4px 6px -4px rgba(225, 29, 99, 0.2);
}

.name {
	margin: 0;
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--color-text-primary);
}

.title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 300;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
}

.tagline {
	margin: 0 auto;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.625;
	color: var(--color-text-secondary);
}

.links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	padding-top: 1.5rem;
}

.link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 9rem;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 9999px;
	color: var(--color-text-secondary);
	font-weight: 500;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
}

.link:hover,
.link:focus-visible {
	border-color: var(--color-accent);
	color: var(--color-accent);
	box-shadow: 0 0 15px rgba(225, 29, 99, 0.15);
	outline: none;
}

.icon {
	width: 1.25rem;
	height: 1.25rem;
}

.footer {
	padding: 2rem 0;
	text-align: center;
	font-size: 0.875rem;
	color: rgba(161, 161, 170, 0.5);
	position: relative;
}

.footer p {
	margin: 0;
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fade-in-up 0.6s ease-out both;
}

.delay-0 {
	animation-delay: 0ms;
}
.delay-1 {
	animation-delay: 100ms;
}
.delay-2 {
	animation-delay: 200ms;
}
.delay-3 {
	animation-delay: 300ms;
}
.delay-4 {
	animation-delay: 400ms;
}

@media (prefers-reduced-motion: reduce) {
	.fade-in-up {
		animation: none;
	}
}

@media (min-width: 768px) {
	.avatar {
		width: 10rem;
		height: 10rem;
	}

	.name {
		font-size: 4.5rem;
	}

	.title {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.tagline {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}

	.links {
		flex-direction: row;
	}
}
