import React from 'react'; import { Cpu, Compass, Target } from 'lucide-react'; export const Audience: React.FC = () => { return (

Built for
Systems Thinkers.

You treat your body like an engineering project. We handle the fuel calculations so you can just fly the plane.

{[ { icon: Target, title: "Precision", desc: "No vague advice. Specific macronutrient targets based on exertion." }, { icon: Compass, title: "Direction", desc: "Always know the next move. Remove decision fatigue from your diet." }, { icon: Cpu, title: "Automation", desc: "Algorithms that adapt to your metabolism over time." } ].map((item, i) => (

{item.title}

{item.desc}

))}
); };