const FEATURES = [ { icon: '◆', title: 'Player DNA archetypes', body: 'Every player has a prop fingerprint. We classify it, show you which props are reliable vs volatile, and grade accordingly.', }, { icon: '↻', title: 'Self-improving model', body: 'Every resolved grade makes the next one sharper. The engine learns what works and corrects what doesn\'t.', }, { icon: '⚡', title: 'Lineup intel before tip-off', body: 'Real-time lineup and injury data from trusted sources, giving you the edge before the books adjust.', }, { icon: '⊘', title: 'Kill conditions', body: 'Six hard checks on every prop. If minutes, fatigue, blowout risk, or splits say no, we flag it — even on an A grade.', }, { icon: '∿', title: 'Parlay correlation math', body: 'We catch the legs that secretly fight each other. The books love correlated unders — we surface them before you tap.', }, { icon: '⌧', title: 'Deep pitcher-batter matchups', body: 'We score discipline, contact quality, and zone tendencies for every MLB matchup. Not just ERA.', }, { icon: '◯', title: 'Every sport, one engine', body: 'NBA. MLB. WNBA. Soccer. NFL coming September 2026 — more rolling out through 2026. A unified intelligence layer with sport-specific calibration.', }, { icon: '⌦', title: 'The honest ledger', body: 'Every grade. Every result. No hiding. No deletion. Public accuracy by grade tier, once the sample is large enough to mean something.', }, ]; export default function Features() { return (

One platform. Everything connected.

Built by bettors who got tired of switching between five tabs to grade one prop.

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

{f.title}

{f.body}

))}
); }