In continuation to exploring Reth, I was able to understand better the design rationale behind reth.
It has become mandatory to operate a consensus client alongside the execution client to connect to any "post-Merge" network. This change occurred because the Ethereum execution layer now delegates the responsibility of consensus to a separate component called the consensus client.
Execution clients handle block and transaction execution and validation, whereas consensus clients decide which of these valid blocks form part of the blockchain. Consequently, running both an execution client and a consensus client in tandem is vital to ensure synchronization and active participation in the network.
Delving deep into the codebase to understand the implementations of the ethereum specification and what allows Reth to be faster when measured against other clients.