* { box-sizing: border-box; }

:root {
  --bg: #0d0b0f;
  --card: rgba(24, 20, 27, .78);
  --line: rgba(255,255,255,.10);
  --text: #f8f4f7;
  --muted: #bdb3bc;
  --accent: #f08aae;
  --accent2: #d86c95;
}

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

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(240,138,174,.18), transparent 38%),
    radial-gradient(circle at 10% 80%, rgba(216,108,149,.09), transparent 30%),
    var(--bg);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .12;
}
.glow-a { background: #ff77a8; top: 8%; left: -170px; }
.glow-b { background: #b74bff; bottom: 0; right: -180px; }

.page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(24,20,27,.98) 100%);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  display: block;
  transform: scale(1.015);
}

.content {
  position: relative;
  margin-top: -54px;
  padding: 0 24px 22px;
  z-index: 2;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 9vw, 46px);
  line-height: 1;
  letter-spacing: -.03em;
}

.verified {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
  color: #24121a;
  font-size: 13px;
  font-weight: 800;
  margin-top: 5px;
}

.tagline {
  margin: 13px 0 22px;
  color: #eee5eb;
  font-size: 15px;
  line-height: 1.55;
}
.tagline span { color: var(--muted); font-size: 13px; }

.links { display: grid; gap: 12px; }

.link {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 19px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.045);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.18);
}

.link:active { transform: translateY(0); }

.link.primary {
  background: linear-gradient(135deg, rgba(240,138,174,.20), rgba(255,255,255,.055));
  border-color: rgba(240,138,174,.28);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 22px;
}

.link strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.link small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.arrow {
  color: #a99ea8;
  font-size: 18px;
  text-align: right;
}

.footer {
  margin: 21px 0 0;
  text-align: center;
  color: #766d75;
  font-size: 9px;
  letter-spacing: .24em;
}
.footer span { margin: 0 5px; }

@media (max-width: 480px) {
  .page { padding: 0; }
  .card {
    min-height: 100vh;
    width: 100%;
    border-radius: 0;
    border: 0;
  }
  .hero { height: 47vh; max-height: 420px; }
  .content { padding-left: 20px; padding-right: 20px; }
}
