function Pricing() { const [cycle, setCycle] = React.useState('yearly'); const [mode, setMode] = React.useState('consumer'); const plans = { consumer: { monthly: [ { name: 'Starter', price: 9, desc: 'For anyone starting their CoPilot journey.', feats: ['LifeCoPilot AI access', 'Daily signal insights', 'Basic biometrics tracking', 'Mobile + web'] }, { name: 'Signature', price: 29, desc: 'The full ambient experience with wearable hardware.', feats: ['Everything in Starter', 'Veiron wearable included', 'Unlimited signal processing', 'Priority CoPilot responses', 'Sleep + recovery coaching'] }, { name: 'Horizon', price: 59, desc: 'For those who live at the frontier of self-knowledge.', feats: ['Everything in Signature', 'Forge Creator seat', 'Early-access model weights', 'Private GPU allocation', 'Dedicated concierge'] }, ], yearly: [ { name: 'Starter', price: 7, desc: 'For anyone starting their CoPilot journey.', feats: ['LifeCoPilot AI access', 'Daily signal insights', 'Basic biometrics tracking', 'Mobile + web'] }, { name: 'Signature', price: 23, desc: 'The full ambient experience with wearable hardware.', feats: ['Everything in Starter', 'Veiron wearable included', 'Unlimited signal processing', 'Priority CoPilot responses', 'Sleep + recovery coaching'] }, { name: 'Horizon', price: 47, desc: 'For those who live at the frontier of self-knowledge.', feats: ['Everything in Signature', 'Forge Creator seat', 'Early-access model weights', 'Private GPU allocation', 'Dedicated concierge'] }, ] }, business: { monthly: [ { name: 'Team', price: 49, desc: 'Deploy CoPilot across a small team.', feats: ['Up to 10 seats', 'Shared Forge workspace', 'Team analytics', 'Admin console'] }, { name: 'Studio', price: 149, desc: 'For studios building on the Veiron stack.', feats: ['Up to 50 seats', 'Dedicated GPU capacity', 'Fine-tune Cortex', 'Webhook + API access', 'SLA support'] }, { name: 'Enterprise', price: null, desc: 'Custom architecture for companies at scale.', feats: ['Unlimited seats', 'Private Cortex deployment', 'On-prem + hybrid options', 'Dedicated solutions team', 'Custom SLA'] }, ], yearly: [ { name: 'Team', price: 39, desc: 'Deploy CoPilot across a small team.', feats: ['Up to 10 seats', 'Shared Forge workspace', 'Team analytics', 'Admin console'] }, { name: 'Studio', price: 119, desc: 'For studios building on the Veiron stack.', feats: ['Up to 50 seats', 'Dedicated GPU capacity', 'Fine-tune Cortex', 'Webhook + API access', 'SLA support'] }, { name: 'Enterprise', price: null, desc: 'Custom architecture for companies at scale.', feats: ['Unlimited seats', 'Private Cortex deployment', 'On-prem + hybrid options', 'Dedicated solutions team', 'Custom SLA'] }, ] } }; const current = plans[mode][cycle]; return (
05 / Pricing

One smart plan.
Unlimited possibilities.

{current.map((p, i) => (
{p.name}
{p.price === null ? ( Custom ) : ( <> ${p.price} / month )}
{p.desc}
    {p.feats.map(f =>
  • {f}
  • )}
{p.price === null ? 'Contact sales' : 'Get started'} →
))}
); } window.Pricing = Pricing;