import { SectionShell } from "@/components/ui/SectionShell"; import { Reveal } from "@/components/ui/Reveal"; type Feature = { label: string; body: string; icon: React.ReactNode }; const I = "h-4 w-4 stroke-current"; const FEATURES: Feature[] = [ { label: "Edge-to-edge clarity", body: "A significant increase in sharpness across the entire field of view. Every detail stays crisp, from the center to the very edges.", icon: ( ), }, { label: "Massive sweet spot", body: "A significantly expanded eye box with clarity, allowing more freedom of movement without losing focus or sharpness.", icon: ( ), }, { label: "Reduced lens glare", body: "Cleaner visuals in high-contrast scenes, with far fewer stray beams of light or distracting internal reflections.", icon: ( ), }, { label: "Improved brightness", body: "A more efficient optical path, from the displays through the lenses, delivers a brighter, more vivid image.", icon: ( ), }, ]; /** * Optics features — the four clarity claims, in the original's mono-labelled * format (Fragment Mono caps + a small instrument glyph), on the near-black * stage. A two-column spec list, one dominant idea each, no decorative grid. */ export function OpticsFeatures() { return (

Rebuilt around the eye box, so clarity holds wherever you look.

{FEATURES.map((f, i) => (
{f.icon} {f.label}

{f.body}

))}
); }