cryptosignal-sleuth / pricing.html
Alexo19's picture
FINISH BUILDING APP
440287e verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing | CryptoSignal Sleuth</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
500: '#d946ef',
},
secondary: {
500: '#f97316',
}
}
}
}
}
</script>
<style>
.vanta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.3;
}
.glass-card {
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(17, 25, 40, 0.75);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.125);
}
.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(217, 70, 239, 0.1), 0 10px 10px -5px rgba(217, 70, 239, 0.04);
}
.popular-plan {
border: 2px solid #d946ef;
position: relative;
}
.popular-badge {
position: absolute;
top: -12px;
right: 20px;
background: #d946ef;
color: white;
padding: 2px 8px;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: bold;
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<div id="vanta-bg" class="vanta-bg"></div>
<nav class="border-b border-gray-800 py-4">
<div class="container mx-auto px-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="activity" class="text-primary-500"></i>
<span class="text-xl font-bold bg-gradient-to-r from-primary-500 to-secondary-500 bg-clip-text text-transparent">CryptoSignal Sleuth</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="index.html" class="hover:text-primary-500 transition">Dashboard</a>
<a href="signals.html" class="hover:text-primary-500 transition">Signals</a>
<a href="analytics.html" class="hover:text-primary-500 transition">Analytics</a>
<a href="traders.html" class="hover:text-primary-500 transition">Traders</a>
<a href="api-docs.html" class="hover:text-primary-500 transition">API Docs</a>
</div>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</nav>
<main class="container mx-auto px-4 py-8">
<!-- Pricing Header -->
<section class="glass-card p-8 mb-12 relative overflow-hidden">
<div class="absolute -top-20 -right-20 w-64 h-64 rounded-full bg-primary-500 opacity-10 blur-3xl"></div>
<div class="absolute -bottom-20 -left-20 w-64 h-64 rounded-full bg-secondary-500 opacity-10 blur-3xl"></div>
<div class="relative z-10 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Simple <span class="text-primary-500">Pricing</span></h1>
<p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto">Choose the plan that fits your trading needs</p>
<div class="inline-flex bg-gray-800 rounded-lg p-1">
<button class="px-4 py-2 rounded-lg font-medium">Monthly</button>
<button class="bg-primary-500 text-white px-4 py-2 rounded-lg font-medium">Yearly (Save 20%)</button>
</div>
</div>
</section>
<!-- Pricing Plans -->
<section class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-16">
<!-- Basic Plan -->
<div class="pricing-card glass-card p-8 rounded-xl border border-gray-800 transition duration-300">
<h2 class="text-2xl font-bold mb-2">Basic</h2>
<p class="text-gray-400 mb-6">For casual traders getting started with signal analysis</p>
<div class="mb-6">
<span class="text-4xl font-bold">$29</span>
<span class="text-gray-400">/month</span>
</div>
<button class="w-full bg-gray-800 hover:bg-gray-700 text-white py-3 rounded-lg font-medium mb-6">
Get Started
</button>
<ul class="space-y-3 text-gray-300">
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>100 signals per day</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Basic performance metrics</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Email notifications</span>
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x" class="w-4 h-4 text-red-500 mr-2"></i>
<span>API Access</span>
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x" class="w-4 h-4 text-red-500 mr-2"></i>
<span>Advanced filters</span>
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x" class="w-4 h-4 text-red-500 mr-2"></i>
<span>Priority support</span>
</li>
</ul>
</div>
<!-- Pro Plan (Popular) -->
<div class="pricing-card popular-plan glass-card p-8 rounded-xl border border-primary-500 transition duration-300">
<div class="popular-badge">MOST POPULAR</div>
<h2 class="text-2xl font-bold mb-2">Pro</h2>
<p class="text-gray-400 mb-6">For serious traders who need comprehensive signal analysis</p>
<div class="mb-6">
<span class="text-4xl font-bold">$79</span>
<span class="text-gray-400">/month</span>
</div>
<button class="w-full bg-gradient-to-r from-primary-500 to-secondary-500 text-white py-3 rounded-lg font-bold mb-6">
Get Started
</button>
<ul class="space-y-3 text-gray-300">
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Unlimited signals</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Advanced analytics</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Push notifications</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Basic API access</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Custom filters</span>
</li>
<li class="flex items-center text-gray-500">
<i data-feather="x" class="w-4 h-4 text-red-500 mr-2"></i>
<span>Priority support</span>
</li>
</ul>
</div>
<!-- Enterprise Plan -->
<div class="pricing-card glass-card p-8 rounded-xl border border-gray-800 transition duration-300">
<h2 class="text-2xl font-bold mb-2">Enterprise</h2>
<p class="text-gray-400 mb-6">For institutions and professional trading teams</p>
<div class="mb-6">
<span class="text-4xl font-bold">$199</span>
<span class="text-gray-400">/month</span>
</div>
<button class="w-full bg-gray-800 hover:bg-gray-700 text-white py-3 rounded-lg font-medium mb-6">
Get Started
</button>
<ul class="space-y-3 text-gray-300">
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Unlimited signals</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Premium analytics</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>All notification methods</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Full API access</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>Advanced filters</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
<span>24/7 priority support</span>
</li>
</ul>
</div>
</section>
<!-- Feature Comparison -->
<section class="glass-card p-8 rounded-xl mb-16">
<h2 class="text-3xl font-bold mb-8 text-center">Plan <span class="text-primary-500">Comparison</span></h2>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="border-b border-gray-800">
<th class="pb-4 text-left">Feature</th>
<th class="pb-4 text-center">Basic</th>
<th class="pb-4 text-center">Pro</th>
<th class="pb-4 text-center">Enterprise</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-800">
<tr>
<td class="py-4 text-gray-400">Daily Signal Limit</td>
<td class="py-4 text-center">100</td>
<td class="py-4 text-center">Unlimited</td>
<td class="py-4 text-center">Unlimited</td>
</tr>
<tr>
<td class="py-4 text-gray-400">Performance Analytics</td>
<td class="py-4 text-center">Basic</td>
<td class="py-4 text-center">Advanced</td>
<td class="py-4 text-center">Premium</td>
</tr>
<tr>
<td class="py-4 text-gray-400">Notifications</td>
<td class="py-4 text-center">Email</td>
<td class="py-4 text-center">Email + Push</td>
<td class="py-4 text-center">All Methods</td>
</tr>
<tr>
<td class="py-4 text-gray-400">API Access</td>
<td class="py-4 text-center"><i data-feather="x" class="w-4 h-4 text-red-500 mx-auto"></i></td>
<td class="py-4 text-center">Basic</td>
<td class="py-4 text-center">Full</td>
</tr>
<tr>
<td class="py-4 text-gray-400">Signal Filters</td>
<td class="py-4 text-center">Basic</td>
<td class="py-4 text-center">Custom</td>
<td class="py-4 text-center">Advanced</td>
</tr>
<tr>
<td class="py-4 text-gray-400">Support</td>
<td class="py-4 text-center">Email</td>
<td class="py-4 text-center">Email + Chat</td>
<td class="py-4 text-center">24/7 Priority</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- FAQ Section -->
<section class="glass-card p-8 rounded-xl">
<h2 class="text-3xl font-bold mb-8 text-center">Frequently Asked <span class="text-secondary-500">Questions</span></h2>
<div class="space-y-4">
<!-- FAQ Item 1 -->
<div class="border-b border-gray-800 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-medium">What payment methods do you accept?</h3>
<i data-feather="chevron-down" class="w-5 h-5 text-gray-400"></i>
</button>
<div class="mt-2 text-gray-400">
We accept all major credit cards (Visa, Mastercard, American Express), PayPal, and cryptocurrency payments including Bitcoin and Ethereum.
</div>
</div>
<!-- FAQ Item 2 -->
<div class="border-b border-gray-800 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-medium">Can I change plans later?</h3>
<i data-feather="chevron-down" class="w-5 h-5 text-gray-400"></i>
</button>
<div class="mt-2 text-gray-400">
Yes, you can upgrade or downgrade your plan at any time. Changes will be prorated based on your current billing cycle.
</div>
</div>
<!-- FAQ Item 3 -->
<div class="border-b border-gray-800 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-medium">Is there a free trial available?</h3>
<i data-feather="chevron-down" class="w-5 h-5 text-gray-400"></i>
</button>
<div class="mt-2 text-gray-400">
We offer a 7-day free trial for our Pro plan. No credit card is required to start the trial.
</div>
</div>
<!-- FAQ Item 4 -->
<div class="border-b border-gray-800 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-medium">How do I cancel my subscription?</h3>
<i data-feather="chevron-down" class="w-5 h-5 text-gray-400"></i>
</button>
<div class="mt-2 text-gray-400">
You can cancel at any time from your account settings. Your subscription will remain active until the end of your current billing period.
</div>
</div>
<!-- FAQ Item 5 -->
<div class="border-b border-gray-800 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="text-lg font-medium">What's your refund policy?</h3>
<i data-feather="chevron-down" class="w-5 h-5 text-gray-400"></i>
</button>
<div class="mt-2 text-gray-400">
We offer a 14-day money-back guarantee for all annual subscriptions. Monthly plans can be canceled before the next billing cycle.
</div>
</div>
</div>
</section>
</main>
<footer class="border-t border-gray-800 py-8 mt-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i data-feather="activity" class="text-primary-500"></i>
<span class="text-xl font-bold">CryptoSignal Sleuth</span>
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-primary-500 transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="hover:text-primary-500 transition">
<i data-feather="github" class="w-5 h-5"></i>
</a>
<a href="#" class="hover:text-primary-500 transition">
<i data-feather="discord" class="w-5 h-5"></i>
</a>
<a href="#" class="hover:text-primary-500 transition">
<i data-feather="mail" class="w-5 h-5"></i>
</a>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between">
<div class="mb-6 md:mb-0">
<p class="text-gray-400">&copy; 2023 CryptoSignal Sleuth. All rights reserved.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-3 gap-8">
<div>
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="features.html" class="text-gray-300 hover:text-primary-500 transition">Features</a></li>
<li><a href="pricing.html" class="text-gray-300 hover:text-primary-500 transition">Pricing</a></li>
<li><a href="api-docs.html" class="text-gray-300 hover:text-primary-500 transition">API Docs</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-primary-500 transition">About</a></li>
<li><a href="#" class="text-gray-300 hover:text-primary-500 transition">Blog</a></li>
<li><a href="#" class="text-gray-300 hover:text-primary-500 transition">Careers</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-400 uppercase tracking-wider mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-primary-500 transition">Privacy</a></li>
<li><a href="#" class="text-gray-300 hover:text-primary-500 transition">Terms</a></li>
<li><a href="#" class="text-gray-300 hover:text-primary-500 transition">Cookie Policy</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js globe background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: "#d946ef",
backgroundColor: "#111827",
size: 1.00
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>