/* ftm/profile */
.ftm-profile {
  position: relative;
  background: var(--ftm-bg-warm);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  max-width: 420px;
  margin: 24px auto;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.ftm-profile__aura {
  position: absolute;
  inset: -30px;
  background: var(--ftm-rainbow);
  filter: blur(60px);
  opacity: 0.18;
  z-index: 0;
}
.ftm-profile > *:not(.ftm-profile__aura) { position: relative; z-index: 1; }

.ftm-profile__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ftm-navy), var(--ftm-navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.ftm-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ftm-profile__initials {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-size: 32px;
  letter-spacing: 0.02em;
}

.ftm-profile__name {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 4px;
  color: var(--ftm-navy);
  letter-spacing: 0.01em;
}
.ftm-profile__role {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ftm-muted);
  font-weight: 600;
  margin: 0 0 16px;
}
.ftm-profile__bio {
  font-size: 14.5px;
  color: var(--ftm-navy-soft);
  line-height: 1.6;
  margin: 0 0 18px;
}
.ftm-profile__bio p { margin: 0 0 10px; }
.ftm-profile__bio p:last-child { margin-bottom: 0; }

.ftm-profile .ftm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.ftm-profile .ftm-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s ease, transform .15s ease, border-color .2s ease;
  border: 1px solid transparent;
}
.ftm-profile .ftm-actions__btn--primary {
  background: var(--ftm-navy);
  color: #fff;
}
.ftm-profile .ftm-actions__btn--primary:hover { background: #0F1A33; transform: translateY(-2px); }
.ftm-profile .ftm-actions__btn--ghost {
  background: transparent;
  color: var(--ftm-navy);
  border-color: var(--ftm-line);
}
.ftm-profile .ftm-actions__btn--ghost:hover { background: var(--ftm-bg); border-color: #D6DCE5; transform: translateY(-2px); }
