DEEPSEEK V3 MASTER UPGRADE PROMPT — ELITE TAX ANALYSIS WORKSPACE
Browse files================================================================
Role:
You are DEEPSEEK V3 — senior full-stack engineer, data scientist, and financial-forensics integrator.
Upgrade the existing “QuantumLedger Pro | Forensic Suite” by adding an **Elite Tax Analysis Workspace (E-TAW)** and enhancing CUSIP/Surety modules, ingestion, analytics, and reporting to a diplomatic/presidential standard.
Critical constraints (must be enforced in code and README):
• ALL analysis runs ONLY over operator-uploaded data or public feeds with licensed API keys.
• Do NOT access IRS IMF/BMF or Federal masterfiles without authorization — instead return FOIA templates and lawful channel instructions.
• All form outputs are advisory for CPA/Attorney review only. Banner:
**“FOR CPA/ATTORNEY REVIEW — NOT A FILING OR LEGAL ADVICE.”**
• Pay-walled vendor keys (BLOOMBERG_API_KEY, FIDELITY_API_KEY, SCHWAB_API_KEY, JPM_API_KEY) server-side only; mock data if missing.
High-level objective:
Build an enterprise-grade workspace that ingests contracts, promissory notes, invoices, statements, bank data, transcripts, prospectuses, and other financial docs; extracts structured data; computes forensic analytics (accrued interest, yields, amortization, fractionalization estimates, insurance value ranges); maps parties and roles; and generates CPA-ready exports and IRS form guidance. Everything organized, professional, and user-friendly.
FEATURE SUMMARY
• Frontend component → `components/TaxWorkspaceElite.jsx`
• APIs → `/api/parse-doc`, `/api/reconcile-ledger`, `/api/fraction-estimate`, `/api/party-mapping`, `/api/insurance-estimate`, `/api/generate-cpa-bundle`
• Enhanced CUSIP/Bond Search aggregating MERS, FINRA, TreasuryDirect, OpenFIGI, EDGAR, Fidelity, Bloomberg, Schwab, JPM
• Redis provenance cache layer
• Playwright + Jest testing for all modules
──────────────────────────────
1️⃣ DOCUMENT INGESTION
──────────────────────────────
Accept uploads (PDF, DOCX, TXT, CSV, OFX/QFX, MT940, XLSX).
Pipeline: store → virus/size check → text extraction (pdf-parse + Tesseract OCR) → language detect → normalize.
Store with provenance {uploaderId, filename, sha256, uploadedAt}.
──────────────────────────────
2️⃣ STRUCTURED EXTRACTION & PARSERS
──────────────────────────────
Modular parsers:
• Contract/Note → parties, dates, principal, rate, collateral clauses, assignment clauses, law.
• Invoice/Receipt → vendor, invoice #, date, line items.
• Bank Stmt → ledger (date, type, amount, balance).
• Loan/Mortgage → principal, amortization, servicer, pool ID.
• Insurance Policy → policy #, insured value, beneficiary, claims.
• Prospectus/PSA → CUSIP tables, tranche mapping.
Outputs normalized JSON {document_type, parties[], amounts[], dates[], identifiers[]}.
──────────────────────────────
3️⃣ PARTY/ENTITY EXTRACTION & RELATIONSHIP GRAPH
──────────────────────────────
Use NER + role detection (spaCy logic or JS NLP): roles = owner, trustee, beneficiary, custodian, nominee, POA, issuer, underwriter, CEO/CFO, judge, prosecutor, officer etc.
Build graph (Neo4j or JS) linking docs → parties → CUSIPs/trusts.
UI = interactive Entity Map with expandable nodes and provenance links.
──────────────────────────────
4️⃣ TRANSACTION RECONCILIATION & FRACTIONALIZATION ESTIMATOR
──────────────────────────────
Match bank ledger vs docs (fuzzy matching on date/amount/ref).
Compute rolling metrics (sum, count, mean, std dev).
Heuristic fractionalization logic:
• Detect repeated amounts & counterparties → fraction events.
• Cluster (transfers, window analysis, silhouette score).
• Bound min & max (9× – 33× range).
• Return interval + confidence score + evidence transactions.
──────────────────────────────
5️⃣ INSURANCE EXPOSURE & CLAIM VALUE (ADVISORY)
──────────────────────────────
Identify insurer & policy numbers.
Estimate insured value (low/mid/high) from limits, par value, historic payouts.
Compute claim frequency based on uploaded history + public data.
Output insuredValueEstimate + claimFrequencyEstimate + evidence.
⚠️ Produces checklists only — no claim instructions; banner applied.
──────────────────────────────
6️⃣ TAX-RELEVANT ANALYTICS & CALCULATIONS
──────────────────────────────
Compute accrued interest, coupon accrual, current yield, YTM, gain/loss, amortization, payment waterfalls.
Loans/notes → principal outstanding, delinquency, recoverable amount.
Securitizations → map loan to trust via CUSIP/PSA.
All math deterministic + unit-tested for edge cases.
──────────────────────────────
7️⃣ IRS FORM ADVISORY & CPA BUNDLE GENERATION
──────────────────────────────
Generate Recommendation Cards per issue: rationale + provenance + confidence.
Provide three CPA paths (conservative, balanced, aggressive).
Suggest forms for review — 1099-OID, 1099-B, 1040X, 1041/X, 843, 8275, 4506-T, 2848.
CPA Bundle export → CSV, JSON, PDF brief + checklist (show lines but no auto-fill).
Banner displayed on every output.
- enterprise.html +2 -2
- index.html +3 -3
- tax-workspace.html +358 -0
|
@@ -49,12 +49,12 @@
|
|
| 49 |
</div>
|
| 50 |
<div class="hidden md:flex space-x-6">
|
| 51 |
<a href="index.html" class="hover:text-green-400 transition">Home</a>
|
| 52 |
-
<a href="
|
| 53 |
<a href="#" class="hover:text-green-400 transition">Documents</a>
|
| 54 |
<a href="#" class="hover:text-green-400 transition">Analytics</a>
|
| 55 |
<a href="enterprise.html" class="text-green-400 font-medium">Enterprise</a>
|
| 56 |
<a href="#" class="hover:text-green-400 transition">Support</a>
|
| 57 |
-
|
| 58 |
<div class="flex items-center space-x-4">
|
| 59 |
<button id="enterpriseAccountBtn" class="bg-gradient-to-r from-green-500 to-blue-500 px-4 py-2 rounded-full hover:opacity-90 transition">
|
| 60 |
<i data-feather="user" class="inline mr-1"></i> Account
|
|
|
|
| 49 |
</div>
|
| 50 |
<div class="hidden md:flex space-x-6">
|
| 51 |
<a href="index.html" class="hover:text-green-400 transition">Home</a>
|
| 52 |
+
<a href="tax-workspace.html" class="hover:text-green-400 transition">Tax Workspace</a>
|
| 53 |
<a href="#" class="hover:text-green-400 transition">Documents</a>
|
| 54 |
<a href="#" class="hover:text-green-400 transition">Analytics</a>
|
| 55 |
<a href="enterprise.html" class="text-green-400 font-medium">Enterprise</a>
|
| 56 |
<a href="#" class="hover:text-green-400 transition">Support</a>
|
| 57 |
+
</div>
|
| 58 |
<div class="flex items-center space-x-4">
|
| 59 |
<button id="enterpriseAccountBtn" class="bg-gradient-to-r from-green-500 to-blue-500 px-4 py-2 rounded-full hover:opacity-90 transition">
|
| 60 |
<i data-feather="user" class="inline mr-1"></i> Account
|
|
@@ -42,13 +42,13 @@
|
|
| 42 |
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-green-400 to-blue-500">TurboTax Titanium</span>
|
| 43 |
</div>
|
| 44 |
<div class="hidden md:flex space-x-6">
|
| 45 |
-
<a href="
|
| 46 |
-
<a href="
|
| 47 |
<a href="#" class="hover:text-green-400 transition">Documents</a>
|
| 48 |
<a href="#" class="hover:text-green-400 transition">Analytics</a>
|
| 49 |
<a href="enterprise.html" class="hover:text-green-400 transition">Enterprise</a>
|
| 50 |
<a href="#" class="hover:text-green-400 transition">Support</a>
|
| 51 |
-
|
| 52 |
<div class="flex items-center space-x-4">
|
| 53 |
<button id="accountBtn" class="bg-gradient-to-r from-green-500 to-blue-500 px-4 py-2 rounded-full hover:opacity-90 transition">
|
| 54 |
<i data-feather="user" class="inline mr-1"></i> Account
|
|
|
|
| 42 |
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-green-400 to-blue-500">TurboTax Titanium</span>
|
| 43 |
</div>
|
| 44 |
<div class="hidden md:flex space-x-6">
|
| 45 |
+
<a href="index.html" class="hover:text-green-400 transition">Dashboard</a>
|
| 46 |
+
<a href="tax-workspace.html" class="hover:text-green-400 transition">Tax Workspace</a>
|
| 47 |
<a href="#" class="hover:text-green-400 transition">Documents</a>
|
| 48 |
<a href="#" class="hover:text-green-400 transition">Analytics</a>
|
| 49 |
<a href="enterprise.html" class="hover:text-green-400 transition">Enterprise</a>
|
| 50 |
<a href="#" class="hover:text-green-400 transition">Support</a>
|
| 51 |
+
</div>
|
| 52 |
<div class="flex items-center space-x-4">
|
| 53 |
<button id="accountBtn" class="bg-gradient-to-r from-green-500 to-blue-500 px-4 py-2 rounded-full hover:opacity-90 transition">
|
| 54 |
<i data-feather="user" class="inline mr-1"></i> Account
|
|
@@ -0,0 +1,358 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Elite Tax Analysis Workspace | TurboTax Titanium</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 9 |
+
<style>
|
| 10 |
+
.glass-morphism {
|
| 11 |
+
background: rgba(255, 255, 255, 0.1);
|
| 12 |
+
backdrop-filter: blur(10px);
|
| 13 |
+
border-radius: 20px;
|
| 14 |
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
| 15 |
+
}
|
| 16 |
+
.workspace-card {
|
| 17 |
+
transition: all 0.3s ease;
|
| 18 |
+
}
|
| 19 |
+
.workspace-card:hover {
|
| 20 |
+
transform: translateY(-5px);
|
| 21 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
| 22 |
+
}
|
| 23 |
+
.warning-banner {
|
| 24 |
+
background: linear-gradient(90deg, #f59e0b, #ef4444);
|
| 25 |
+
animation: pulse 2s infinite;
|
| 26 |
+
}
|
| 27 |
+
@keyframes pulse {
|
| 28 |
+
0% { opacity: 0.8; }
|
| 29 |
+
50% { opacity: 1; }
|
| 30 |
+
100% { opacity: 0.8; }
|
| 31 |
+
}
|
| 32 |
+
</style>
|
| 33 |
+
</head>
|
| 34 |
+
<body class="min-h-screen bg-gradient-to-br from-gray-900 to-gray-800 text-white">
|
| 35 |
+
<!-- Navigation -->
|
| 36 |
+
<nav class="glass-morphism mx-4 mt-4 rounded-full px-6 py-3 flex justify-between items-center">
|
| 37 |
+
<div class="flex items-center space-x-2">
|
| 38 |
+
<i data-feather="dollar-sign" class="text-green-400"></i>
|
| 39 |
+
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-green-400 to-blue-500">TurboTax Titanium</span>
|
| 40 |
+
</div>
|
| 41 |
+
<div class="hidden md:flex space-x-6">
|
| 42 |
+
<a href="index.html" class="hover:text-green-400 transition">Dashboard</a>
|
| 43 |
+
<a href="tax-workspace.html" class="text-green-400 font-medium">Tax Workspace</a>
|
| 44 |
+
<a href="#" class="hover:text-green-400 transition">Documents</a>
|
| 45 |
+
<a href="#" class="hover:text-green-400 transition">Analytics</a>
|
| 46 |
+
<a href="enterprise.html" class="hover:text-green-400 transition">Enterprise</a>
|
| 47 |
+
<a href="#" class="hover:text-green-400 transition">Support</a>
|
| 48 |
+
</div>
|
| 49 |
+
<div class="flex items-center space-x-4">
|
| 50 |
+
<button id="accountBtn" class="bg-gradient-to-r from-green-500 to-blue-500 px-4 py-2 rounded-full hover:opacity-90 transition">
|
| 51 |
+
<i data-feather="user" class="inline mr-1"></i> Account
|
| 52 |
+
</button>
|
| 53 |
+
<button class="md:hidden">
|
| 54 |
+
<i data-feather="menu"></i>
|
| 55 |
+
</button>
|
| 56 |
+
</div>
|
| 57 |
+
</nav>
|
| 58 |
+
|
| 59 |
+
<!-- Main Content -->
|
| 60 |
+
<main class="container mx-auto px-4 py-8">
|
| 61 |
+
<!-- Warning Banner -->
|
| 62 |
+
<div class="warning-banner text-white text-center p-4 mb-8 rounded-lg">
|
| 63 |
+
<strong>FOR CPA/ATTORNEY REVIEW — NOT A FILING OR LEGAL ADVICE</strong>
|
| 64 |
+
</div>
|
| 65 |
+
|
| 66 |
+
<!-- Workspace Header -->
|
| 67 |
+
<section class="text-center mb-12">
|
| 68 |
+
<h1 class="text-4xl md:text-5xl font-extrabold mb-4">
|
| 69 |
+
<span class="bg-clip-text text-transparent bg-gradient-to-r from-green-400 to-blue-500">
|
| 70 |
+
Elite Tax Analysis Workspace
|
| 71 |
+
</span>
|
| 72 |
+
</h1>
|
| 73 |
+
<p class="text-lg text-gray-300 max-w-3xl mx-auto">
|
| 74 |
+
Forensic-grade document processing, structured extraction, and CPA-ready analytics
|
| 75 |
+
</p>
|
| 76 |
+
</section>
|
| 77 |
+
|
| 78 |
+
<!-- Document Upload Section -->
|
| 79 |
+
<section class="glass-morphism p-8 rounded-2xl mb-12">
|
| 80 |
+
<h2 class="text-2xl font-bold mb-6">Document Ingestion</h2>
|
| 81 |
+
<div class="border-2 border-dashed border-gray-600 rounded-xl p-8 text-center">
|
| 82 |
+
<i data-feather="upload" class="w-12 h-12 mx-auto text-blue-400 mb-4"></i>
|
| 83 |
+
<p class="mb-4">Drag & drop or click to upload financial documents</p>
|
| 84 |
+
<p class="text-sm text-gray-400 mb-6">Supported formats: PDF, DOCX, TXT, CSV, OFX/QFX, MT940, XLSX</p>
|
| 85 |
+
<button id="uploadBtn" class="bg-gradient-to-r from-blue-500 to-purple-500 px-6 py-3 rounded-full font-medium hover:opacity-90 transition">
|
| 86 |
+
Select Files
|
| 87 |
+
</button>
|
| 88 |
+
</div>
|
| 89 |
+
</section>
|
| 90 |
+
|
| 91 |
+
<!-- Analysis Modules Grid -->
|
| 92 |
+
<section class="mb-12">
|
| 93 |
+
<h2 class="text-2xl font-bold mb-6">Analysis Modules</h2>
|
| 94 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 95 |
+
<!-- Module 1 -->
|
| 96 |
+
<div class="glass-morphism p-6 rounded-xl workspace-card">
|
| 97 |
+
<div class="text-green-400 mb-4">
|
| 98 |
+
<i data-feather="file-text" class="w-10 h-10"></i>
|
| 99 |
+
</div>
|
| 100 |
+
<h3 class="text-xl font-bold mb-3">Structured Extraction</h3>
|
| 101 |
+
<p class="text-gray-300 mb-4">Extract entities, amounts, dates and identifiers from financial documents</p>
|
| 102 |
+
<button class="text-blue-400 text-sm font-medium flex items-center">
|
| 103 |
+
Run Analysis <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
|
| 104 |
+
</button>
|
| 105 |
+
</div>
|
| 106 |
+
|
| 107 |
+
<!-- Module 2 -->
|
| 108 |
+
<div class="glass-morphism p-6 rounded-xl workspace-card">
|
| 109 |
+
<div class="text-purple-400 mb-4">
|
| 110 |
+
<i data-feather="users" class="w-10 h-10"></i>
|
| 111 |
+
</div>
|
| 112 |
+
<h3 class="text-xl font-bold mb-3">Party Relationship Graph</h3>
|
| 113 |
+
<p class="text-gray-300 mb-4">Visualize connections between entities across documents</p>
|
| 114 |
+
<button class="text-blue-400 text-sm font-medium flex items-center">
|
| 115 |
+
View Network <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
|
| 116 |
+
</button>
|
| 117 |
+
</div>
|
| 118 |
+
|
| 119 |
+
<!-- Module 3 -->
|
| 120 |
+
<div class="glass-morphism p-6 rounded-xl workspace-card">
|
| 121 |
+
<div class="text-yellow-400 mb-4">
|
| 122 |
+
<i data-feather="dollar-sign" class="w-10 h-10"></i>
|
| 123 |
+
</div>
|
| 124 |
+
<h3 class="text-xl font-bold mb-3">Fractionalization Estimator</h3>
|
| 125 |
+
<p class="text-gray-300 mb-4">Detect potential transaction clusters with confidence scoring</p>
|
| 126 |
+
<button class="text-blue-400 text-sm font-medium flex items-center">
|
| 127 |
+
Calculate <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
|
| 128 |
+
</button>
|
| 129 |
+
</div>
|
| 130 |
+
|
| 131 |
+
<!-- Module 4 -->
|
| 132 |
+
<div class="glass-morphism p-6 rounded-xl workspace-card">
|
| 133 |
+
<div class="text-red-400 mb-4">
|
| 134 |
+
<i data-feather="shield" class="w-10 h-10"></i>
|
| 135 |
+
</div>
|
| 136 |
+
<h3 class="text-xl font-bold mb-3">Insurance Exposure</h3>
|
| 137 |
+
<p class="text-gray-300 mb-4">Estimate policy values and claim frequency from documents</p>
|
| 138 |
+
<button class="text-blue-400 text-sm font-medium flex items-center">
|
| 139 |
+
Assess <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
|
| 140 |
+
</button>
|
| 141 |
+
</div>
|
| 142 |
+
|
| 143 |
+
<!-- Module 5 -->
|
| 144 |
+
<div class="glass-morphism p-6 rounded-xl workspace-card">
|
| 145 |
+
<div class="text-blue-400 mb-4">
|
| 146 |
+
<i data-feather="cpu" class="w-10 h-10"></i>
|
| 147 |
+
</div>
|
| 148 |
+
<h3 class="text-xl font-bold mb-3">Tax Calculations</h3>
|
| 149 |
+
<p class="text-gray-300 mb-4">Accrued interest, yields, amortization, and gain/loss</p>
|
| 150 |
+
<button class="text-blue-400 text-sm font-medium flex items-center">
|
| 151 |
+
Compute <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
|
| 152 |
+
</button>
|
| 153 |
+
</div>
|
| 154 |
+
|
| 155 |
+
<!-- Module 6 -->
|
| 156 |
+
<div class="glass-morphism p-6 rounded-xl workspace-card">
|
| 157 |
+
<div class="text-pink-400 mb-4">
|
| 158 |
+
<i data-feather="file-plus" class="w-10 h-10"></i>
|
| 159 |
+
</div>
|
| 160 |
+
<h3 class="text-xl font-bold mb-3">CPA Bundle Generator</h3>
|
| 161 |
+
<p class="text-gray-300 mb-4">Export all findings with evidence for professional review</p>
|
| 162 |
+
<button class="text-blue-400 text-sm font-medium flex items-center">
|
| 163 |
+
Generate <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
|
| 164 |
+
</button>
|
| 165 |
+
</div>
|
| 166 |
+
</div>
|
| 167 |
+
</section>
|
| 168 |
+
|
| 169 |
+
<!-- CUSIP/Bond Search -->
|
| 170 |
+
<section class="glass-morphism p-8 rounded-2xl mb-12">
|
| 171 |
+
<h2 class="text-2xl font-bold mb-6">CUSIP/Bond Search</h2>
|
| 172 |
+
<div class="flex mb-6">
|
| 173 |
+
<input type="text" placeholder="Search by CUSIP, ISIN, or description..." class="flex-grow bg-gray-700 rounded-l-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500">
|
| 174 |
+
<button class="bg-gradient-to-r from-blue-500 to-purple-500 px-6 rounded-r-lg font-medium">
|
| 175 |
+
Search
|
| 176 |
+
</button>
|
| 177 |
+
</div>
|
| 178 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-6" id="cusipResults">
|
| 179 |
+
<!-- Results will be populated here -->
|
| 180 |
+
</div>
|
| 181 |
+
</section>
|
| 182 |
+
|
| 183 |
+
<!-- IRS Form Advisory -->
|
| 184 |
+
<section class="glass-morphism p-8 rounded-2xl mb-12">
|
| 185 |
+
<h2 class="text-2xl font-bold mb-6">IRS Form Advisory</h2>
|
| 186 |
+
<div class="space-y-6">
|
| 187 |
+
<!-- Advisory Card 1 -->
|
| 188 |
+
<div class="bg-gray-800 bg-opacity-50 p-6 rounded-xl">
|
| 189 |
+
<div class="flex justify-between items-start mb-4">
|
| 190 |
+
<h3 class="text-xl font-bold text-green-400">Potential 1099-OID Requirement</h3>
|
| 191 |
+
<span class="bg-green-900 text-green-400 px-3 py-1 rounded-full text-sm">High Confidence</span>
|
| 192 |
+
</div>
|
| 193 |
+
<p class="text-gray-300 mb-4">Documents indicate original issue discount instruments with $4,200 in accrued interest across 3 notes.</p>
|
| 194 |
+
<div class="flex flex-wrap gap-2 mb-4">
|
| 195 |
+
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm">Document: Promissory Note #1234</span>
|
| 196 |
+
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm">Document: Bank Statement 03/2023</span>
|
| 197 |
+
</div>
|
| 198 |
+
<div>
|
| 199 |
+
<h4 class="font-bold mb-2">Action Options:</h4>
|
| 200 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
| 201 |
+
<div class="bg-gray-800 p-4 rounded-lg">
|
| 202 |
+
<h5 class="font-bold text-blue-400 mb-2">Conservative</h5>
|
| 203 |
+
<p class="text-sm text-gray-300 mb-2">Report all accrued interest</p>
|
| 204 |
+
<button class="text-xs bg-blue-900 text-blue-400 px-3 py-1 rounded">Select</button>
|
| 205 |
+
</div>
|
| 206 |
+
<div class="bg-gray-800 p-4 rounded-lg">
|
| 207 |
+
<h5 class="font-bold text-purple-400 mb-2">Balanced</h5>
|
| 208 |
+
<p class="text-sm text-gray-300 mb-2">Report with conservative yield adjustment</p>
|
| 209 |
+
<button class="text-xs bg-purple-900 text-purple-400 px-3 py-1 rounded">Select</button>
|
| 210 |
+
</div>
|
| 211 |
+
<div class="bg-gray-800 p-4 rounded-lg">
|
| 212 |
+
<h5 class="font-bold text-pink-400 mb-2">Aggressive</h5>
|
| 213 |
+
<p class="text-sm text-gray-300 mb-2">Defer reporting pending legal opinion</p>
|
| 214 |
+
<button class="text-xs bg-pink-900 text-pink-400 px-3 py-1 rounded">Select</button>
|
| 215 |
+
</div>
|
| 216 |
+
</div>
|
| 217 |
+
</div>
|
| 218 |
+
</div>
|
| 219 |
+
|
| 220 |
+
<!-- Advisory Card 2 -->
|
| 221 |
+
<div class="bg-gray-800 bg-opacity-50 p-6 rounded-xl">
|
| 222 |
+
<div class="flex justify-between items-start mb-4">
|
| 223 |
+
<h3 class="text-xl font-bold text-yellow-400">Potential 1099-B Consideration</h3>
|
| 224 |
+
<span class="bg-yellow-900 text-yellow-400 px-3 py-1 rounded-full text-sm">Medium Confidence</span>
|
| 225 |
+
</div>
|
| 226 |
+
<p class="text-gray-300 mb-4">Transaction clusters suggest possible security sales totaling ~$18,500 with estimated cost basis of $12,200.</p>
|
| 227 |
+
<div class="flex flex-wrap gap-2 mb-4">
|
| 228 |
+
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm">Document: Bank Wire Confirmations</span>
|
| 229 |
+
<span class="bg-gray-700 px-3 py-1 rounded-full text-sm">Document: Brokerage Statement Q2</span>
|
| 230 |
+
</div>
|
| 231 |
+
<div>
|
| 232 |
+
<h4 class="font-bold mb-2">Action Options:</h4>
|
| 233 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
| 234 |
+
<div class="bg-gray-800 p-4 rounded-lg">
|
| 235 |
+
<h5 class="font-bold text-blue-400 mb-2">Conservative</h5>
|
| 236 |
+
<p class="text-sm text-gray-300 mb-2">Report all as short-term capital gains</p>
|
| 237 |
+
<button class="text-xs bg-blue-900 text-blue-400 px-3 py-1 rounded">Select</button>
|
| 238 |
+
</div>
|
| 239 |
+
<div class="bg-gray-800 p-4 rounded-lg">
|
| 240 |
+
<h5 class="font-bold text-purple-400 mb-2">Balanced</h5>
|
| 241 |
+
<p class="text-sm text-gray-300 mb-2">Report with long-term/short-term split</p>
|
| 242 |
+
<button class="text-xs bg-purple-900 text-purple-400 px-3 py-1 rounded">Select</button>
|
| 243 |
+
</div>
|
| 244 |
+
<div class="bg-gray-800 p-4 rounded-lg">
|
| 245 |
+
<h5 class="font-bold text-pink-400 mb-2">Aggressive</h5>
|
| 246 |
+
<p class="text-sm text-gray-300 mb-2">Document as return of principal</p>
|
| 247 |
+
<button class="text-xs bg-pink-900 text-pink-400 px-3 py-1 rounded">Select</button>
|
| 248 |
+
</div>
|
| 249 |
+
</div>
|
| 250 |
+
</div>
|
| 251 |
+
</div>
|
| 252 |
+
</div>
|
| 253 |
+
</section>
|
| 254 |
+
|
| 255 |
+
<!-- CPA Export Section -->
|
| 256 |
+
<section class="glass-morphism p-8 rounded-2xl text-center">
|
| 257 |
+
<h2 class="text-2xl font-bold mb-6">Generate CPA Review Bundle</h2>
|
| 258 |
+
<p class="text-lg text-gray-300 max-w-2xl mx-auto mb-8">
|
| 259 |
+
Compile all findings, evidence, and form recommendations for professional review
|
| 260 |
+
</p>
|
| 261 |
+
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 262 |
+
<button id="exportPDF" class="bg-gradient-to-r from-red-500 to-pink-500 px-8 py-4 rounded-full text-lg font-semibold hover:opacity-90 transition">
|
| 263 |
+
<i data-feather="file-text" class="inline mr-2"></i> PDF Report
|
| 264 |
+
</button>
|
| 265 |
+
<button id="exportCSV" class="bg-gradient-to-r from-green-500 to-blue-500 px-8 py-4 rounded-full text-lg font-semibold hover:opacity-90 transition">
|
| 266 |
+
<i data-feather="file-text" class="inline mr-2"></i> CSV Data
|
| 267 |
+
</button>
|
| 268 |
+
<button id="exportJSON" class="glass-morphism px-8 py-4 rounded-full text-lg font-semibold hover:bg-gray-700 transition">
|
| 269 |
+
<i data-feather="code" class="inline mr-2"></i> JSON Export
|
| 270 |
+
</button>
|
| 271 |
+
</div>
|
| 272 |
+
</section>
|
| 273 |
+
</main>
|
| 274 |
+
|
| 275 |
+
<!-- Footer -->
|
| 276 |
+
<footer class="glass-morphism mt-16 py-8">
|
| 277 |
+
<div class="container mx-auto px-4">
|
| 278 |
+
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 279 |
+
<div>
|
| 280 |
+
<h3 class="text-lg font-semibold mb-4">TurboTax Titanium</h3>
|
| 281 |
+
<p class="text-gray-400 text-sm">The most advanced tax platform on Earth.</p>
|
| 282 |
+
<div class="flex space-x-4 mt-4">
|
| 283 |
+
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>
|
| 284 |
+
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="linkedin"></i></a>
|
| 285 |
+
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="github"></i></a>
|
| 286 |
+
</div>
|
| 287 |
+
</div>
|
| 288 |
+
<div>
|
| 289 |
+
<h3 class="text-lg font-semibold mb-4">Products</h3>
|
| 290 |
+
<ul class="space-y-2">
|
| 291 |
+
<li><a href="enterprise.html" class="text-gray-400 hover:text-white transition">Enterprise</a></li>
|
| 292 |
+
<li><a href="tax-workspace.html" class="text-gray-400 hover:text-white transition">Tax Workspace</a></li>
|
| 293 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Personal</a></li>
|
| 294 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Crypto</a></li>
|
| 295 |
+
</ul>
|
| 296 |
+
</div>
|
| 297 |
+
<div>
|
| 298 |
+
<h3 class="text-lg font-semibold mb-4">Resources</h3>
|
| 299 |
+
<ul class="space-y-2">
|
| 300 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Tax Academy</a></li>
|
| 301 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">API Docs</a></li>
|
| 302 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
|
| 303 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">White Papers</a></li>
|
| 304 |
+
</ul>
|
| 305 |
+
</div>
|
| 306 |
+
<div>
|
| 307 |
+
<h3 class="text-lg font-semibold mb-4">Legal</h3>
|
| 308 |
+
<ul class="space-y-2">
|
| 309 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">FOIA Templates</a></li>
|
| 310 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Disclosures</a></li>
|
| 311 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Licensing</a></li>
|
| 312 |
+
<li><a href="#" class="text-gray-400 hover:text-white transition">Compliance</a></li>
|
| 313 |
+
</ul>
|
| 314 |
+
</div>
|
| 315 |
+
</div>
|
| 316 |
+
<div class="border-t border-gray-700 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
|
| 317 |
+
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 TurboTax Titanium. All rights reserved.</p>
|
| 318 |
+
<div class="flex space-x-6">
|
| 319 |
+
<a href="#" class="text-gray-400 hover:text-white transition text-sm">Privacy Policy</a>
|
| 320 |
+
<a href="#" class="text-gray-400 hover:text-white transition text-sm">Terms of Service</a>
|
| 321 |
+
<a href="#" class="text-gray-400 hover:text-white transition text-sm">Security</a>
|
| 322 |
+
</div>
|
| 323 |
+
</div>
|
| 324 |
+
</div>
|
| 325 |
+
</footer>
|
| 326 |
+
|
| 327 |
+
<script>
|
| 328 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 329 |
+
// Initialize only essential features
|
| 330 |
+
document.body.style.background = 'linear-gradient(to bottom right, #111827, #1e3a8a)';
|
| 331 |
+
|
| 332 |
+
// Button handlers
|
| 333 |
+
document.getElementById('accountBtn').addEventListener('click', function() {
|
| 334 |
+
window.location.href = '#account';
|
| 335 |
+
});
|
| 336 |
+
|
| 337 |
+
document.getElementById('uploadBtn').addEventListener('click', function() {
|
| 338 |
+
alert('Document upload dialog would open here');
|
| 339 |
+
});
|
| 340 |
+
|
| 341 |
+
document.getElementById('exportPDF').addEventListener('click', function() {
|
| 342 |
+
alert('Generating PDF report for CPA review...');
|
| 343 |
+
});
|
| 344 |
+
|
| 345 |
+
document.getElementById('exportCSV').addEventListener('click', function() {
|
| 346 |
+
alert('Generating CSV data export...');
|
| 347 |
+
});
|
| 348 |
+
|
| 349 |
+
document.getElementById('exportJSON').addEventListener('click', function() {
|
| 350 |
+
alert('Generating JSON data export...');
|
| 351 |
+
});
|
| 352 |
+
|
| 353 |
+
// Feather Icons
|
| 354 |
+
feather.replace();
|
| 355 |
+
});
|
| 356 |
+
</script>
|
| 357 |
+
</body>
|
| 358 |
+
</html>
|