:root {
  --navy: #111111;
  --navy-soft: #2a2a2a;
  --muted: #64748b;
  --line: #e6eaf0;
  --bg: #eef1f6;
  --card-bg: #ffffff;
  --black: #0c0c0d;
  --red: #ff0000;
  --whatsapp: #25d366;
  --available: #22c55e;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--navy);
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  min-height: 100vh;
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.card__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--black), var(--red));
}

.card__body {
  padding: 32px 28px 24px;
  text-align: center;
}

.brand {
  background: var(--black);
  border-radius: 0 0 18px 18px;
  padding: 22px 20px;
  margin: -32px -28px 26px;
}

.brand__logo {
  display: block;
  height: 44px;
  width: auto;
  margin: 0 auto;
}

.avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.avatar__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.avatar__mark {
  width: 44%;
  height: auto;
}

.avatar__dot {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--available);
  border: 3px solid #fff;
}

.name {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--navy);
}

.role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.role::before,
.role::after {
  content: "";
  height: 1px;
  width: 24px;
  background: var(--line);
}

.tagline {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.tagline strong {
  color: var(--navy);
}

.stats {
  display: flex;
  justify-content: space-between;
  padding: 18px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.stat {
  flex: 1;
}

.stat__value {
  font-size: 21px;
  font-weight: 800;
  color: var(--red);
}

.stat__label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
  line-height: 1.3;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action:active {
  transform: scale(0.98);
}

.action--primary {
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
  border-color: transparent;
}

.action__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.action--primary .action__icon {
  background: rgba(255, 255, 255, 0.15);
}

.icon--whatsapp {
  background: var(--whatsapp);
}

.icon--mail {
  background: var(--red);
}

.icon--globe {
  background: var(--navy);
}

.icon--vcard {
  background: var(--navy-soft);
}

.action__text {
  flex: 1;
  min-width: 0;
}

.action__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.action--primary .action__title,
.action--primary .action__subtitle {
  color: #fff;
}

.action__subtitle {
  font-size: 12.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action__arrow {
  color: var(--muted);
  flex-shrink: 0;
}

.action--primary .action__arrow {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
  text-align: center;
}

.footer__tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer__org {
  font-size: 12.5px;
  color: var(--muted);
}

.footer__link {
  color: var(--red);
  text-decoration: none;
  font-size: 12.5px;
}

.footer__note {
  font-size: 10.5px;
  color: #a3adbd;
  margin-top: 10px;
  line-height: 1.5;
}

.footer__copyright {
  font-size: 10.5px;
  color: #a3adbd;
  margin-top: 6px;
}
