As mentioned in one of the comments, you can't restrict ticket or comment access based on the user. Finding or creating an external reporting system is your best bet.
A couple of things based on experience with Trac:
Creating a custom workflow is pretty straight froward. The use of GraphViz is a huge help for communicating states and actions. A workflow plugin (like AdvancedTicketWorkflowPlugin) that further extends the built-in functionality isn't too hard to do if you need more complex state interaction.
For custom reporting, you can write SQL queries that take named parameters, then link to these from a wiki page:
For example, the query can contain a WHERE clause like this:
WHERE datetime(t.changetime, 'unixepoch') >= datetime('now','-$DAYS days')
and page the wiki page can have this:
Show activity for last [http://server.com/trac/report/9?DAYS=8 8] days.
