/* ---- Portrait ---- */
.hero__portrait {
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-surface);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  margin-bottom: var(--space-md);
  background: var(--accent-soft);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  transition: transform var(--duration-fast) var(--ease-out-expo),
    box-shadow var(--duration-fast) var(--ease-out-expo),
    background var(--duration-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(226, 102, 92, 0.3); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--outline { border: 1.5px solid var(--border); color: var(--text-primary); background: var(--bg-surface); }
.btn--outline:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }

/* ---- Card base ---- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out-expo),
    box-shadow var(--duration-normal) var(--ease-out-expo);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Stat Card ---- */
.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card__value { font-size: var(--fs-lg); font-weight: 700; color: var(--accent-2); display: block; }
.stat-card__label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--space-xs); display: block; }

/* ---- Role Card ---- */
.role-card { text-align: left; }
.role-card__icon {
  width: 48px; height: 48px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.role-card--teal .role-card__icon { background: var(--accent-2-soft); color: var(--accent-2); }
.role-card__org {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.role-card__title { font-size: var(--fs-md); font-weight: 600; margin-bottom: var(--space-xs); }
.role-card__desc { font-size: var(--fs-sm); color: var(--text-secondary); line-height: 1.6; }

/* ---- Certification Card ---- */
.cert-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.cert-card__check {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  padding: 6px;
}
.cert-card__name { font-weight: 600; display: block; }
.cert-card__issuer { font-size: var(--fs-sm); color: var(--text-muted); display: block; }

/* ---- Interest Card ---- */
.interest-card__tag {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.75rem;
  margin-bottom: var(--space-sm);
}
.interest-card__title { font-size: var(--fs-md); font-weight: 600; margin-bottom: var(--space-xs); }
.interest-card__desc { font-size: var(--fs-sm); color: var(--text-secondary); }
