File size: 10,195 Bytes
c0b52b1 54a721f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumLedger Pro | Forensic Suite</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>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#10B981',
dark: '#1E293B',
light: '#F8FAFC'
}
}
}
}
</script>
<style>
.vanta-bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
opacity: 0.3;
}
.content-wrapper {
position: relative;
z-index: 1;
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
</style>
</head>
<body class="bg-dark text-light min-h-screen">
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<div id="vanta-bg" class="vanta-bg"></div>
<div class="content-wrapper container mx-auto px-4 py-8">
<!-- Header -->
<header class="flex justify-between items-center mb-12">
<div class="flex items-center space-x-2">
<i data-feather="bar-chart-2" class="text-primary w-8 h-8"></i>
<h1 class="text-3xl font-bold bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
QuantumLedger Pro
</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="hover:text-primary transition">Dashboard</a>
<a href="#" class="hover:text-primary transition">Workspace</a>
<a href="#" class="hover:text-primary transition">Documentation</a>
<a href="#" class="hover:text-primary transition">Support</a>
</nav>
<button class="md:hidden">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section class="glass-card rounded-xl p-8 mb-12">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-4xl font-bold mb-4">Forensic Financial Analysis Suite</h2>
<p class="text-xl mb-8 opacity-90">
Elite Tax Analysis Workspace for comprehensive document processing, party mapping, and CPA-ready reporting.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-primary hover:bg-primary/90 text-white px-6 py-3 rounded-lg font-medium transition">
Start New Analysis
</button>
<button class="bg-secondary hover:bg-secondary/90 text-white px-6 py-3 rounded-lg font-medium transition">
Upload Documents
</button>
</div>
</div>
</section>
<!-- Warning Banner -->
<div class="glass-card border-l-4 border-yellow-500 p-4 mb-12">
<div class="flex items-start">
<i data-feather="alert-triangle" class="text-yellow-500 mr-3 mt-1"></i>
<p class="font-medium">
FOR CPA/ATTORNEY REVIEW — NOT TAX OR LEGAL ADVICE. All outputs are advisory only and require professional review.
</p>
</div>
</div>
<!-- Features Grid -->
<section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-12">
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-primary/20 p-3 rounded-full mr-4">
<i data-feather="upload" class="text-primary w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Document Ingestion</h3>
</div>
<p class="opacity-80">
Upload PDFs, DOCX, bank statements, and financial documents for automated processing and analysis.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-secondary/20 p-3 rounded-full mr-4">
<i data-feather="search" class="text-secondary w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Structured Extraction</h3>
</div>
<p class="opacity-80">
Advanced parsers identify parties, amounts, dates, and financial terms across document types.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-purple-500/20 p-3 rounded-full mr-4">
<i data-feather="git-merge" class="text-purple-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Party Mapping</h3>
</div>
<p class="opacity-80">
Visual relationship graph showing connections between entities, documents, and transactions.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-pink-500/20 p-3 rounded-full mr-4">
<i data-feather="divide" class="text-pink-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Fractionalization</h3>
</div>
<p class="opacity-80">
Heuristic analysis to estimate potential fractional reserve transactions with confidence scoring.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-yellow-500/20 p-3 rounded-full mr-4">
<i data-feather="shield" class="text-yellow-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">Insurance Analysis</h3>
</div>
<p class="opacity-80">
Estimate insured values and claim potential based on document evidence and public data.
</p>
</div>
<div class="glass-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="bg-green-500/20 p-3 rounded-full mr-4">
<i data-feather="file-text" class="text-green-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold">CPA Bundles</h3>
</div>
<p class="opacity-80">
Generate complete packages with recommendations, forms, and evidence for professional review.
</p>
</div>
</section>
<!-- CTA Section -->
<section class="glass-card rounded-xl p-8 text-center">
<h3 class="text-2xl font-bold mb-4">Ready to Begin Your Analysis?</h3>
<p class="mb-6 max-w-2xl mx-auto opacity-90">
Upload your documents to start the forensic financial examination process and generate CPA-ready reports.
</p>
<button class="bg-gradient-to-r from-primary to-secondary text-white px-8 py-4 rounded-lg font-medium hover:opacity-90 transition">
Launch Elite Tax Workspace
</button>
</section>
</main>
<!-- Footer -->
<footer class="mt-16 pt-8 border-t border-gray-700">
<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="bar-chart-2" class="text-primary w-6 h-6"></i>
<span class="font-medium">QuantumLedger Pro</span>
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-primary transition">Terms</a>
<a href="#" class="hover:text-primary transition">Privacy</a>
<a href="#" class="hover:text-primary transition">Security</a>
<a href="#" class="hover:text-primary transition">Contact</a>
</div>
</div>
<p class="text-center mt-8 opacity-70 text-sm">
© 2023 QuantumLedger Pro | Forensic Suite. All outputs require professional review.
</p>
</footer>
</div>
<script>
// Initialize Vanta.js 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: "#3B82F6",
backgroundColor: "#1E293B",
size: 0.8
});
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html>
|