An SCC (Strongly Connected Component) is a maximal set of nodes where every node can reach every other node through directed paths. Maximal means you cannot add any more nodes to the set without breaking the mutual reachability property. If node is outside the SCC, either cannot reach the SCC or the SCC cannot reach .
Example: In graph , nodes form an SCC because reaches reaches reaches . Every pair is mutually reachable.