:root {
	--lav-50: #f7f4fd;
	--lav-100: #eee8fb;
	--lav-200: #ddd2f6;
	--lav-300: #c5b1ee;
	--lav-500: #8e66d6;
	--lav-600: #7a4dc4;
	--lav-800: #553488;
	--lav-900: #472e6e;
	--ink: #2d2640;
	--muted: #6b6280;
	--card: #ffffff;
	--shadow: 0 6px 20px -8px rgba(85, 52, 136, 0.35);
}

* {
	box-sizing: border-box;
}

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

body {
	font-family: 'Nunito', ui-sans-serif, system-ui, -apple-system, sans-serif;
	color: var(--ink);
	background: linear-gradient(170deg, var(--lav-200) 0%, var(--lav-100) 35%, var(--lav-50) 70%, #fff 100%);
	background-attachment: fixed;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.blob {
	position: fixed;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.55;
	z-index: -1;
	pointer-events: none;
}
.blob-1 {
	width: 320px;
	height: 320px;
	background: #d9c7ff;
	top: -80px;
	right: -100px;
	animation: float 14s ease-in-out infinite;
}
.blob-2 {
	width: 260px;
	height: 260px;
	background: #ffd6ec;
	bottom: -60px;
	left: -90px;
	animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
	50% {
		transform: translate(20px, 30px) scale(1.08);
	}
}

.wrap {
	max-width: 560px;
	margin: 0 auto;
	padding: max(40px, env(safe-area-inset-top)) 16px max(32px, env(safe-area-inset-bottom));
}

.profile {
	text-align: center;
	margin-bottom: 28px;
}

.avatar {
	position: relative;
	width: 112px;
	height: 112px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lav-300), var(--lav-500));
	display: grid;
	place-items: center;
	font-size: 48px;
	border: 4px solid #fff;
	box-shadow: var(--shadow);
	overflow: hidden;
}
.avatar img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1 {
	margin: 0;
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--lav-900);
	letter-spacing: -0.01em;
}

.tagline {
	margin: 4px 0 10px;
	font-weight: 700;
	color: var(--lav-600);
}

.bio {
	margin: 0 auto;
	max-width: 420px;
	color: var(--muted);
	line-height: 1.5;
}

.links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.link {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	padding: 12px 18px;
	background: var(--card);
	border: 2px solid var(--lav-100);
	border-radius: 999px;
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
	box-shadow: var(--shadow);
	transition:
		transform 0.15s ease,
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}
.link:hover,
.link:focus-visible {
	transform: translateY(-2px) scale(1.01);
	border-color: var(--lav-300);
	box-shadow: 0 10px 24px -8px rgba(85, 52, 136, 0.45);
	outline: none;
}
.link:active {
	transform: scale(0.98);
}
.link .icon {
	font-size: 1.35rem;
	width: 28px;
	text-align: center;
	flex-shrink: 0;
}
.link .text {
	flex: 1;
	text-align: center;
}
.link .chev {
	width: 28px;
	text-align: center;
	color: var(--lav-300);
	font-size: 1.5rem;
	line-height: 1;
}

.link.featured {
	background: linear-gradient(135deg, var(--lav-500), var(--lav-600));
	border-color: transparent;
	color: #fff;
}
.link.featured .chev {
	color: rgba(255, 255, 255, 0.8);
}
.link.featured:hover {
	border-color: transparent;
}

.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 28px 0 8px;
}
.chip {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--lav-200);
	color: var(--lav-800);
	font-size: 0.85rem;
	font-weight: 700;
}

footer {
	margin-top: 28px;
	text-align: center;
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.5;
}
footer p {
	margin: 6px 0;
}

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