function FaqPage(){
const qa=[
['What does HelixCyber do?','Enterprise reverse engineering, AI security, agent audits, RAG hardening, and detection engineering for companies that run software agents.'],
['Which models do you run?','Anthropic (Opus 5, Fable 5/5.1), OpenAI (GPT-5.6 Sol, gpt-daybreak-blue), Google Gemini, AWS Bedrock, and xAI Grok 4.6. Assignment depends on the lane. See Models.'],
['Can you help with HIPAA, CMMC, SOC 2, GDPR, or PIPL?','We produce technical evidence those reviews ask for. We are not your auditor of record. See Compliance.'],
['Do you replace internal IT?','No. Internal IT keeps tickets and identity. We sit on reverse engineering and AI-security work. We can co-run with a security team.'],
['Do you work unauthorized targets?','No. Offline sample plus written authorization, or we do not start.'],
['Will you write exploits for us?','We recover layouts, parsers, and policy gaps. Weaponization is out of scope unless a separate, named, authorized engagement says otherwise — and that is not what this site sells.'],
['How do we start?','Request a briefing. We map binaries, models, and agents, then propose an audit, red team, or retainer. Qualified inquiries receive a reply within seven business days to confirm next steps.'],
['Where are you?','Engagements are remote-first. Model calls can be pinned in-region on Bedrock when the tenant requires it.']
];
return <div>
<div style={{padding:'48px 40px 16px'}}>
<div style={{maxWidth:800,margin:'0 auto'}}>
<h1 style={{fontFamily:'var(--font-mono)',fontSize:40,fontWeight:500,letterSpacing:'-.04em',margin:'0 0 12px'}}>FAQ</h1>
<p style={{fontSize:15,color:'var(--text-muted)'}}>Short answers. If it needs a scope file, it is not an FAQ.</p>
</div>
</div>
<section style={{padding:'8px 40px 96px'}}>
<div style={{maxWidth:800,margin:'0 auto'}}>
{qa.map(([q,a])=><div key={q} style={{padding:'22px 0',borderTop:'1px solid var(--border-default)'}}>
<h2 style={{fontSize:16,fontWeight:600,margin:'0 0 8px'}}>{q}</h2>
<p style={{fontSize:14,color:'var(--text-muted)',margin:0,lineHeight:1.7}}>{a}</p>
</div>)}
</div>
</section>
</div>;
}
mountPage('faq.html', FaqPage);
