BDD is a process/mechanism for driving development by using high level descriptions of the the behavior of the application. Cucumber (in all its forms) is a tool for supporting this process by allowing you to specify high level concepts in a natural language that can be automated. It is not a tool for writing unit tests.
Cucumber is a tool for the outer circle of the BDD process

But as you can see BDD has an inner circle where unit testing takes place.
When you are in the inner circle sometimes you have to build things to make the outer circle green (other times you will just use existing things). When you build things you require unit tests. In the inner circle the level of abstraction is lower, the amount of detail is much greater, and exhaustive testing is much more important. These combine to make using cucumber for these tests prohibitively expensive and difficult. This is why unit testing tools are a better fit here.