/* ===== Sotero landing — pricing, FAQ, CTA, footer ===== */ const S = window.SoteroSite; const DS2 = window.SoteroDesignSystem_d49ec1; const { Button: Btn, Badge: Bdg } = DS2; /* ---------- PRICING ---------- */ function Pricing({ onCta }) { const { Icon, wrap, eyebrow, h2Style, leadStyle } = window.SoteroSite; const tiers = [ { tier: 'T0', name: 'Self-serve', price: 'Free', unit: 'knowledge base + chatbot', extra: 'Paid interactive resolutions $29.99–49.99', best: 'Common fixes, education, and honest answers for impossible cases.', feats: ['Instant guides & walkthroughs', 'Chatbot triage, 24/7', 'Wrong network, missing tokens, lost-seed reality checks'] }, { tier: 'T1', name: 'Written review', price: '$99–149', unit: 'flat', extra: 'Human-confirmed, within 24 hours', best: 'A simple CEX, transaction, wallet, or scam case reviewed by a person.', feats: ['Templated, human-reviewed reply', 'Stuck tx, wrong-chain-to-CEX, approval revoke', 'Prep checklist included'] }, { tier: 'T2', name: 'Case support', price: '$500–1,500', unit: 'engagement', extra: '+ 10–15% on returned funds where applicable', best: 'CEX disputes, wallet access, estate access, support packets.', feats: ['A single specialist owns your case', 'CEX appeal packets (you submit)', 'Partial-seed & hardware recovery', 'Weekly status updates'], featured: true }, { tier: 'T3', name: 'Priority case', price: '$2,500–10,000', unit: 'retainer', extra: '+ 15–20% on returned funds where applicable', best: '$50k+ theft, urgent freeze paths, forensic + attorney coordination.', feats: ['Same-day call with a principal', 'Recovery roadmap & active work', 'Court & LE documentation support', 'Full estate recovery'] }, ]; return (
Pricing

Public pricing. No surprises.

Hidden pricing is a scam signal. Ours is on the page. The initial assessment is always free, and success fees apply only when recovery is technically possible — on defined billable events agreed before any work begins.

{tiers.map((t) => (
{t.featured && Most common}
{t.tier} {t.name}
{t.price} {t.unit}
{t.extra}
{t.best}
{t.feats.map((f) => (
{f}
))}
Start assessment
))}
{/* forensic + principles */}
Forensic report — $1,200–5,000
Standalone trace reports, evidence packages, and attorney-ready documentation.
{[ 'Never charge for hopeless cases', 'Free initial assessment, always', 'Success fees only on real recovery', '"Tracing to Binance" is not recovery', ].map((p) => (
{p}
))}
); } /* ---------- FAQ ---------- */ function FaqItem({ q, a, open, onToggle }) { const { Icon } = window.SoteroSite; return (

{a}

); } function Faq() { const { wrap, eyebrow, h2Style } = window.SoteroSite; const [open, setOpen] = React.useState(0); const faqs = [ ['How do I know Sotero isn\'t a recovery scam?', 'Scams share a fingerprint: they ask for your seed phrase, promise guaranteed recovery, want crypto up front, and hide their pricing. We do the opposite — public pricing, a free honest review, no custody of your funds, and we never ask for your secrets or promise a result.'], ['Will you ever ask for my seed phrase, private key, or password?', 'No — never, for any reason. Anyone who asks (even someone claiming to be us) is trying to steal from you. We work through documentation, escalation, and specialist work, not by touching your secrets.'], ['Can you guarantee you\'ll get my money back?', 'No, and anyone who does is lying. Some losses genuinely can\'t be recovered. What we do promise is an honest read up front, for free, so you never pay to be told the truth.'], ['What can actually be recovered?', 'Often solvable: frozen or locked exchange accounts, wrong-chain or missing exchange deposits, self-custody access issues (lost password, dead device, partial seed), and estate access. Usually not: funds sent to a wrong self-custody address, or a fully lost seed with no device — and we\'ll tell you so.'], ['How much does this cost?', 'The initial review is always free. If we can help, you choose a path: a written review ($99–149), hands-on case support ($500–1,500), or a priority case ($2,500–10,000) — plus a success fee only where funds are actually returned. Full pricing is on this page.'], ['How long does it take?', 'The free review comes back within 24 hours. After that it depends on the case — a simple fix can resolve in days, while an exchange dispute or estate case can take weeks. We give you a realistic timeline before you commit.'], ['Do you take a percentage of what\'s recovered?', 'Only on outcomes agreed in writing before work begins — funds returned, access restored, or estate assets transferred. Tracing a case "to an exchange" is not recovery and never triggers a fee.'], ['Do you provide legal advice or represent me to law enforcement?', 'No. We prepare attorney- and LE-ready documentation you can give to counsel, exchanges, insurers, or police. Legal advice comes only through licensed counsel, and we never act as your representative or contact anyone as you.'], ['My family member passed away with crypto. Can you help?', 'Yes — this is a core service. We help executors and beneficiaries with discovery (do they hold any), exchange inheritance access with probate documents, wallet recovery, and probate-ready paperwork. Exchanges lack the beneficiary systems banks have, which is exactly why this is hard.'], ]; return (
Questions

The questions everyone asks first.

{faqs.map(([q, a], i) => ( setOpen(open === i ? -1 : i)} /> ))}
); } /* ---------- CTA + FOOTER ---------- */ function CtaFooter({ logoSrc, onCta }) { const { Icon, wrap } = window.SoteroSite; return (

Crisis. Resolved.

Two minutes, no card, no account. Get an honest read on whether your case can be recovered.

We'll never ask for your seed phrase, keys, or password.
); } window.SoteroSite = Object.assign(window.SoteroSite || {}, { Pricing, Faq, CtaFooter });