// Homepage nav + hero. Adapted from hero/hero-bold.jsx.
const NavBold = () => {
const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" };
const FoldMarkHP = window.FoldMarkHP;
return (
CTRL
SECURITY + COMPLIANCE
{[
{ l: 'Features', href: '#features' },
{ l: 'CTRL Assist', href: '#features', accent: true },
{ l: 'Pricing', href: 'Pricing.html' },
{ l: 'About', href: 'About.html' },
{ l: 'Contact', href: 'Contact.html' },
].map(x => (
{x.l}
))}
BOOK DEMO →
);
};
// ─── Analysis card + Assist panel (matches real product) ──────────
const AssistBotHP = ({ size = 36 }) => (
);
const AnalysisCardHP = ({ icon, title, subtitle, tint, active, delay }) => (
{icon}
{title}
{subtitle}
);
const AssistPanelHP = () => {
const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" };
const [activeCard, setActiveCard] = React.useState(0);
React.useEffect(() => {
const id = setInterval(() => setActiveCard(c => (c + 1) % 4), 2200);
return () => clearInterval(id);
}, []);
const cards = [
{ title: 'Risk Analysis', sub: 'Likelihood, impact & HIPAA mapping', tint: '#f97316',
icon: },
{ title: 'Treatment Options', sub: 'Mitigation, transfer & acceptance strategies', tint: '#a855f7',
icon: },
{ title: 'Control Mapping', sub: 'Map to HIPAA controls & identify gaps', tint: '#38bdf8',
icon: },
{ title: 'HIPAA Reference', sub: 'Applicable regulations & requirements', tint: '#eab308',
icon: },
];
return (
CTRL Assist
Lack of Data Loss Prev
RISK
AI-Powered Risk Analysis
Select an analysis type or ask a question about this risk.
All PHI is de-identified before processing.
{cards.map((c, i) => (
))}
Ask about your compliance data…
Responses are for guidance only — consult legal counsel for formal determinations.
);
};
const HeroBoldHP = () => {
const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" };
return (
CTRL_ASSIST // AI COMPLIANCE LAYER
Answers in seconds.
Not $50,000 later.
CTRL Assist is an AI compliance advisor embedded in every module. Analyze risks, map controls, draft treatments, and cite HIPAA regulations — without paying consultant rates for every question.
TRY CTRL ASSIST →
WATCH TOUR
{[
{ n: '< 3s', l: 'avg response time' },
{ n: '45 CFR', l: 'cited directly' },
{ n: '4', l: 'analysis modes' },
].map(s => (
))}
);
};
Object.assign(window, { HeroBoldHP, NavBold });