Skip to content

Commit 3522e8a

Browse files
committed
feat: Active Defense rewrite + Government & Enterprise pricing tiers
- Active Defense: 'Strike Back' — retaliate, waste their resources, trap and fingerprint, feed fake creds, get their servers shut down - Government & Defense tier: FedRAMP, FIPS 140-2, ITAR, GSA Schedule, air-gapped - Enterprise tier: custom modules, SLA, volume licensing, on-prem hardware - New FAQ: government agency support - PRD: updated pricing table with gov + enterprise
1 parent 76b166c commit 3522e8a

2 files changed

Lines changed: 30 additions & 3 deletions

File tree

PRD.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ GET /api/modules/:name/download # Download module package
330330
| Lifetime Access | $499 (or $399 with referral) | All core modules, CLI, daemon, API, lifetime updates |
331331
| Module Store | Free to browse | Community modules free or paid per-module |
332332
| AI-Enhanced | Usage-based | Pay per AI inference — threat classification, anomaly detection, smart alerts |
333-
| Enterprise | Contact us | Custom modules, priority support, SLA |
333+
| Enterprise | Contact us | Custom modules, priority support, SLA, volume licensing |
334+
| Government & Defense | Contract pricing | Air-gapped, FedRAMP, FIPS 140-2, ITAR, GSA Schedule, on-prem hardware |
334335

335336
## Roadmap
336337

src/app/page.tsx

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ const features = [
3333
},
3434
{
3535
icon: "💢",
36-
title: "Active Defense",
37-
desc: "Fight back. Tar pits slow attackers down, honeypots trap them, deception serves fake data, and auto-reports file abuse complaints to their ISP.",
36+
title: "Active Defense — Strike Back",
37+
desc: "Don't just detect — retaliate. Tar pits waste attacker resources, honeypots trap and fingerprint them, deception feeds them fake credentials, and auto-reports get their servers shut down. They attack you, you make them regret it.",
3838
},
3939
{
4040
icon: "⚙️",
@@ -72,6 +72,10 @@ const faqs = [
7272
q: "What about AI-enhanced modules?",
7373
a: "Some modules use AI for advanced threat classification, anomaly detection, and smart alerting. These are usage-based — you only pay for what you use. Your lifetime license covers the core platform; AI usage is metered separately so you're never overpaying.",
7474
},
75+
{
76+
q: "Do you work with government agencies?",
77+
a: "Yes. ThreatCrush supports air-gapped deployment, on-prem hardware appliances, and is designed for FedRAMP, FIPS 140-2, and ITAR compliance. Contact gov@threatcrush.com for GSA Schedule pricing and custom deployment.",
78+
},
7579
{
7680
q: "How does the referral program work?",
7781
a: "After signing up, you get a unique referral link. Your friend pays $399 ($100 off), and you earn $100 per referral, paid out in crypto via <a href='https://coinpayportal.com' target='_blank' rel='noopener noreferrer' class='text-tc-green hover:underline'>CoinPayPortal</a> (BTC, ETH, USDT, SOL). No limits — refer 5 friends and you've paid for your own license. Must be a paying member to earn.",
@@ -757,6 +761,28 @@ export default function Home() {
757761
</div>
758762
</div>
759763
</ScrollReveal>
764+
765+
{/* Enterprise + Government */}
766+
<ScrollReveal delay={200}>
767+
<div className="mt-10 grid grid-cols-1 sm:grid-cols-2 gap-4 max-w-2xl mx-auto">
768+
<div className="rounded-xl border border-tc-border bg-tc-card/40 p-6 text-center">
769+
<div className="text-2xl mb-2">🏢</div>
770+
<h3 className="text-lg font-bold text-white mb-1">Enterprise</h3>
771+
<p className="text-sm text-tc-text-dim mb-3">Custom modules, SLA, dedicated support, on-prem hardware appliances, volume licensing.</p>
772+
<a href="mailto:enterprise@threatcrush.com" className="inline-block rounded-lg border border-tc-green/30 bg-tc-green/5 px-5 py-2 text-sm font-medium text-tc-green hover:bg-tc-green/10 transition-all">
773+
Contact Sales
774+
</a>
775+
</div>
776+
<div className="rounded-xl border border-tc-border bg-tc-card/40 p-6 text-center">
777+
<div className="text-2xl mb-2">🏳️</div>
778+
<h3 className="text-lg font-bold text-white mb-1">Government &amp; Defense</h3>
779+
<p className="text-sm text-tc-text-dim mb-3">FedRAMP-ready, air-gapped deployment, FIPS 140-2, ITAR compliant, GSA Schedule compatible.</p>
780+
<a href="mailto:gov@threatcrush.com" className="inline-block rounded-lg border border-tc-green/30 bg-tc-green/5 px-5 py-2 text-sm font-medium text-tc-green hover:bg-tc-green/10 transition-all">
781+
Request Quote
782+
</a>
783+
</div>
784+
</div>
785+
</ScrollReveal>
760786
</div>
761787
</section>
762788

0 commit comments

Comments
 (0)