Here is exactly what you can say depending on who asks: 1. The 1-Line Quick Answer (For non-technical people or quick updates) "The app is built using Flutter with Feature-First Clean Architecture and BLoC for state management, using Dio for REST API integration and go_router for navigation." 2. The Technical Answer (For Tech Leads or Interviews) "We follow Clean Architecture with a Feature-First folder structure :" State Management: We use the BLoC Pattern ( flutter_bloc ) to separate UI from business logic. Data Layer: We use the Repository Pattern and Data Sources with Dio for API communication. Networking & Auth: Outgoing requests pass through an AuthInterceptor to attach Bearer Tokens dynamically, and token storage is handled via SecureStorageService . Navigation & Routing: Managed via go_router with support for deep linking, route parameters, and guest navigation skips. Guest Mode Architecture: We use a centralized GuestUtils guard pat...