/* ---------- digital business card ---------- */
.vcard-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  position: relative;
  overflow-x: hidden;
  background: var(--navy-900);
}

.vcard-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: var(--noise), linear-gradient(160deg, var(--navy-900), var(--navy-800), var(--navy-700));
  background-size: 160px 160px, auto;
  background-blend-mode: overlay, normal;
}
.vcard-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(90% 75% at 50% 30%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 75% at 50% 30%, #000 0%, transparent 100%);
}

.vcard-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 36px 26px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.vcard-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 16px; }
.vcard-mascot { animation: floatY 5s ease-in-out infinite; filter: drop-shadow(0 10px 20px rgba(0,0,0,.35)); }
.vcard-logo { align-items: center; }

.vcard-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 25px; letter-spacing: -.01em; margin: 6px 0 2px; }
.vcard-role { color: rgba(255,255,255,.68); font-size: 14.5px; margin: 0 0 18px; }

.vcard-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; margin: 0 0 24px; padding: 0; }
.vcard-badges li {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.88);
  background: rgba(22,193,168,.14); border: 1px solid rgba(22,193,168,.32);
  border-radius: 999px; padding: 6px 12px;
}

.vcard-qr-box {
  background: var(--bg); border-radius: var(--radius-md); padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-bottom: 24px; box-shadow: var(--shadow-md);
}
.vcard-qr { width: 168px; height: 168px; display: block; }
.vcard-qr-caption { font-size: 13px; font-weight: 700; color: var(--navy-800); }

.vcard-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-bottom: 22px; }
.vcard-btn {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px;
  border-radius: 13px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-weight: 600; font-size: 14.5px; transition: background .2s, transform .2s;
  min-height: 48px;
}
.vcard-btn:hover { background: rgba(255,255,255,.13); color: #fff; transform: translateY(-1px); }
.vcard-btn svg { color: var(--accent); flex-shrink: 0; }
.vcard-btn span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.vcard-ctas { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.vcard-cta { width: 100%; }

.vcard-footer { margin: 24px 0 0; font-size: 12px; color: rgba(255,255,255,.62); }

@media (prefers-reduced-motion: reduce) {
  .vcard-mascot { animation: none; }
}
