I meant more because you'd already asked the same question yesterday when you started this thread, so I just wondered if you were asking again because no one had answered yet.
I think the question of benefits of Clojure over Groovy / Scala have been answered in a number of threads now. I know I've answered the Clojure vs Groovy question twice already today (in Benefits of Learning Clojure and in New to Clojure). Could you read over those threads and see if they answer your question?
If you have follow up questions, I'll be happy to answer them (in this thread or another).
I understand what you mean about family and work time pressures. It's why I recommend Bruce Tate's "Seven Languages in Seven Weeks" because over the space of seven weeks, by finding just a few hours each week, you can go thru the exercises and learn the basics - and the concepts - of seven new languages. I worked thru the examples on my laptop while I was sat watching TV with my wife, getting thru a "day" worth of examples each evening (there are three "days" of examples for each of the seven languages).
BTW, Groovy actually has no static typing***. The following is valid Groovy:
It compiles, but it won't run. Java will refuse to compile this. The following won't compile in Java but will compile and run in Groovy:
It surprised me too when I first saw it - I had to try it out for myself!
***Actually Groovy has
some static typing - but not in the obvious sense:
http://james-iry.blogspot.com/2009/07/groovy-does-not-have-optional-static.html