+
+### Zero Reflection
+All lookup tables are generated at compile time. No runtime type discovery, no `GetType()` scanning.
+
+
+### O(1) Lookups
+`FromName`, `FromValue`, `ContainsName`, and `ContainsValue` all resolve in constant time via statically-cached dictionaries.
+
+
+### AOT & Trimming Safe
+No reflection, no dynamic code. Works with `PublishAot`, `PublishTrimmed`, and NativeAOT targets out of the box.
+
+
+### No Ceremony
+Just inherit from `OptimizedEnum` and declare your members. The generator does the rest.
+
+
+
+## Quick Example
+
+```csharp
+public sealed partial class OrderStatus : OptimizedEnum