:root {
  --bg-1: #fdf2f8;
  --bg-2: #ede9fe;
  --bg-3: #e0f2fe;
  --ink: #2b2440;
  --muted: #6b6480;
  --accent: #b06ab3;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(176, 106, 179, 0.18);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  background-attachment: fixed;
  display: grid;
  place-items: center;
  padding: 24px;
  -webkit-font-smoothing: antialiased;
}

.card {
  width: 100%;
  max-width: 480px;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 40px 32px;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(91, 33, 122, 0.25);
  animation: rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.badge {
  font-size: 40px;
  line-height: 1;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  margin: 16px 0 4px;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 20px;
}

.bio {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 36ch;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.link:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 20px -8px rgba(176, 106, 179, 0.5);
}

.footer {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--muted);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .card, .badge { animation: none; }
}
