SPSite.Features doesn't contain installed features. It contains activated features.
To grab a list of all features that are installed, whether activated or not, you need to grab SPFeatureDefinition objects from the SPSite.FeatureDefinitions property.
// Get a list of activated features
SPFeatureCollection features = SPContext.Current.Site.Features;
// Get a list of all feature definitions available
SPFeatureDefinitionCollection featureDefinitions = SPContext.Current.Site.FeatureDefinitions;
A better description from msdn:
The presence of a feature in a collection at the farm
(Microsoft.SharePoint.Administration.SPWebService), Web application
(Microsoft.SharePoint.Administration.SPWebApplication), site collection
([T:Microsoft.SharePoint.SPSite)], or Web site (Microsoft.SharePoint.SPWeb)
levels indicates that the feature is activated. Lack of an SPFeature object
indicates that the object is not active in the given scope.
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsite.featuredefinitions.aspx
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsite.features.aspx