:root{
  --bg1:#edf4ff;
  --bg2:#dfeaff;
  --card: rgba(255,255,255,.58);
  --stroke: rgba(255,255,255,.55);
  --text:#0b1324;
  --muted:#5b6b86;
  --blue:#2563eb;
  --blue2:#1d4ed8;
  --radius:26px;
  --shadow: 0 28px 80px rgba(11,19,36,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 15%, var(--bg2), transparent 65%),
    radial-gradient(1000px 500px at 85% 20%, #d9e7ff, transparent 60%),
    radial-gradient(900px 650px at 50% 90%, #f2f7ff, transparent 60%),
    linear-gradient(180deg, var(--bg1), #f7fbff);
  min-height:100%;
}

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

.card-wrap{
  width:min(420px, 92vw);
  filter: drop-shadow(var(--shadow));
}

.card{
  border-radius:var(--radius);
  overflow:hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* HERO IMAGE */
.hero{
  position:relative;
  height: 360px;
  background: linear-gradient(180deg, rgba(37,99,235,.18), rgba(255,255,255,0));
}

.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /* Focus on face */
  object-position: 50% 20%;
  transform: scale(1.02);
}

/* BRAND LOGO over image - no background */
.brand{
  position:absolute;
  right:14px;
  bottom:14px;
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  pointer-events:none;
}

.brand--nobg{
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(11,19,36,.25));
}

.content{
  padding: 18px 18px 16px;
  background:#fff;
}

.name{
  font-size:22px;
  line-height:1.2;
  margin:0;
  font-weight:900;
  letter-spacing:.2px;
}

.role{
  margin:6px 0 0;
  font-weight:800;
  color:#111a2e;
  font-size:14px;
}

.company{
  margin:4px 0 0;
  color:var(--muted);
  font-style:italic;
  font-size:14px;
  font-weight:700;
}

.actions{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.btn{
  appearance:none;
  border:0;
  border-radius:14px;
  padding:12px 14px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}

.btn .btn-ic{
  font-weight:900;
}

.btn-primary{
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow: 0 10px 30px rgba(37,99,235,.28);
}
.btn-primary:hover{ transform: translateY(-1px) }
.btn-primary:active{ transform: translateY(0px) scale(.99) }

.btn-ghost{
  background:#fff;
  border:1px solid #e6edf8;
  color:#0b1324;
}
.btn-ghost:hover{ transform: translateY(-1px); box-shadow: 0 10px 30px rgba(11,19,36,.08) }
.btn-ghost:active{ transform: translateY(0px) scale(.99) }

.rows{
  margin-top:12px;
  display:grid;
  gap:10px;
}

.row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid #edf2ff;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  cursor:pointer;
  text-decoration:none;
  color:inherit;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.row:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11,19,36,.08);
  border-color:#dfe8ff;
}
.row:active{ transform: translateY(0px) scale(.995) }

.icon{
  width:42px;
  height:42px;
  border-radius:999px;
  background: rgba(37,99,235,.10);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}

.icon svg{ width:20px; height:20px; fill: #2563eb; }

/* WhatsApp brand */
.icon-wa{
  background: rgba(34, 197, 94, 0.14);
}
.icon-wa svg{
  fill: #22c55e;
}

.row .meta{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.meta .label{
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}
.meta .value{
  font-size:14px;
  font-weight:900;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* FOOTER HIGHLIGHT */
.footer{
  margin-top:14px;
  text-align:center;
  font-size:13px;
  font-weight:900;
  letter-spacing:.3px;
  color:#1d4ed8;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:14px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.15);
}

/* Mobile */
@media (max-width: 420px){
  .hero{ height: 320px; }
  .actions{ grid-template-columns: 1fr; }
}
.icon-wa{
  background: rgba(34, 197, 94, 0.14);
}
.icon-wa svg{
  fill: #22c55e;
}
