:root {
  --bg: #f5f1eb;
  --card: #6f2cf3;
  --card-2: #5c23cf;
  --fg: #2a2a2f;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 64px rgba(87, 44, 155, 0.28);
  --radius: 34px;
  --font: "Google Sans", "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  background:
    radial-gradient(circle at 50% 12%, rgba(111, 44, 243, 0.09) 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--fg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.card {
  width: min(100%, 420px);
  min-height: 660px;
  padding: 28px 28px 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18) 0, transparent 28%),
    linear-gradient(180deg, var(--card) 0%, var(--card-2) 58%, #4a159f 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -28px -32px auto;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(8px);
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(22px);
  pointer-events: none;
}

.avatar {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  object-fit: cover;
  background: #241b39;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
  margin: 4px auto 18px;
  position: relative;
  z-index: 1;
}

.name {
  margin: 0;
  font-size: 28px;
  line-height: 1.02;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.tagline {
  margin: 10px 0 0;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  position: relative;
  z-index: 1;
}

.copy {
  margin: 26px 0 0;
  max-width: 24ch;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  position: relative;
  z-index: 1;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.whatsapp-btn, 
.email-btn,
.website-btn,
.instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #5f22d9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 150ms ease, background 150ms ease;
}

.whatsapp-btn:hover {
  transform: translateY(-1px);
  background: #f3edf8;
}

.footer {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .card {
    width: min(100%, 330px);
    min-height: 620px;
    padding: 24px 22px 20px;
    border-radius: 30px;
  }

  .name {
    font-size: 26px;
  }

  .copy {
    margin-top: 22px;
    font-size: 15px;
  }
}
