ATDD and TDD are driven by BEHAVIOR
In ATDD, we are driven by behavioral specifications from the end user perspective.
In TDD, we are driven by behavioral specifications from the developer perspective.
Acceptance Tests specify system-level behavior.
Component Tests specify component-level behavior, for example, the behavior of frontend, the behavior of each microservice.
Unit Tests specify unit-level behavior, for example, the behavior exposed by a module (which is exposed through some class public API in OOP).
We start with behavior at the system level (Acceptance Tests) and then decompose it down at different levels.