Spaces:
Running
Running
File size: 43,083 Bytes
151cc3d | 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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Sentiment Defense • Protect Your Distribution Pipeline</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root {
--primary: #0f172a;
--secondary: #64748b;
--accent: #3b82f6;
--success: #10b981;
--warning: #f59e0b;
--danger: #ef4444;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
overflow-x: hidden;
}
.hero-gradient {
background: linear-gradient(135deg,
rgba(15, 23, 42, 0.95) 0%,
rgba(30, 41, 59, 0.9) 50%,
rgba(51, 65, 85, 0.85) 100%);
}
.glass-effect {
backdrop-filter: blur(20px);
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-4px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.gradient-border {
position: relative;
background: linear-gradient(white, white) padding-box,
linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) border-box;
border: 2px solid transparent;
border-radius: 12px;
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.typing-animation {
border-right: 2px solid #3b82f6;
animation: blink 1s infinite;
}
@keyframes blink {
0%, 50% { border-color: #3b82f6; }
51%, 100% { border-color: transparent; }
}
.stagger-animation {
animation: fadeInUp 0.6s ease-out forwards;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.feature-icon {
background: linear-gradient(135deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
</style>
</head>
<body class="bg-slate-50">
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 glass-effect">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center">
<i data-lucide="shield-check" class="w-5 h-5 text-white"></i>
</div>
<span class="font-bold text-lg text-slate-900">AI Sentiment Defense</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="text-slate-600 hover:text-slate-900 transition-colors">Platform</a>
<a href="#demo" class="text-slate-600 hover:text-slate-900 transition-colors">Demo</a>
<a href="#pricing" class="text-slate-600 hover:text-slate-900 transition-colors">Pricing</a>
<button onclick="scrollToSection('contact')" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-2 rounded-lg hover:shadow-lg transition-all">
Get Started
</button>
</div>
<button class="md:hidden" onclick="toggleMobileMenu()">
<i data-lucide="menu" class="w-6 h-6 text-slate-600"></i>
</button>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="fixed inset-0 z-40 bg-slate-900 bg-opacity-50 hidden">
<div class="absolute right-0 top-0 h-full w-64 bg-white shadow-xl p-6">
<div class="flex justify-between items-center mb-6">
<h3 class="font-bold text-lg">Menu</h3>
<button onclick="toggleMobileMenu()">
<i data-lucide="x" class="w-6 h-6 text-slate-600"></i>
</button>
</div>
<div class="space-y-4">
<a href="#features" class="block text-slate-600 hover:text-slate-900">Platform</a>
<a href="#demo" class="block text-slate-600 hover:text-slate-900">Demo</a>
<a href="#pricing" class="block text-slate-600 hover:text-slate-900">Pricing</a>
<button onclick="scrollToSection('contact')" class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white px-4 py-2 rounded-lg">
Get Started
</button>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden">
<div class="absolute inset-0 hero-gradient"></div>
<div class="absolute inset-0">
<div class="absolute top-1/4 left-1/4 w-64 h-64 bg-blue-500 rounded-full opacity-10 blur-3xl"></div>
<div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-purple-500 rounded-full opacity-10 blur-3xl"></div>
</div>
<div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl md:text-6xl lg:text-7xl font-black text-white mb-6 leading-tight">
Defend Your Distribution Pipeline
<span class="block text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-400">
Against AI Objections
</span>
</h1>
<p class="text-xl md:text-2xl text-slate-300 mb-8 leading-relaxed">
Monitor what AI tells your clients about your products. Equip advisors with pre-approved responses.
<strong>Prevent silent sales killers.</strong>
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
<button onclick="scrollToSection('demo')" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-8 py-4 rounded-xl text-lg font-semibold hover:shadow-2xl hover:scale-105 transition-all">
See Live Demo
</button>
<button onclick="scrollToSection('contact')" class="border-2 border-white text-white px-8 py-4 rounded-xl text-lg font-semibold hover:bg-white hover:text-slate-900 transition-all">
Book Strategy Call
</button>
</div>
<div class="mt-12 flex justify-center">
<div class="glass-effect rounded-2xl p-6 max-w-2xl">
<div class="flex items-center justify-between text-white">
<div>
<div class="text-2xl font-bold">$2.3M</div>
<div class="text-sm text-slate-300">Protected AUM</div>
</div>
<div class="w-px h-8 bg-slate-400 mx-4"></div>
<div>
<div class="text-2xl font-bold">87%</div>
<div class="text-sm text-slate-300">Objection Success Rate</div>
</div>
<div class="w-px h-8 bg-slate-400 mx-4"></div>
<div>
<div class="text-2xl font-bold">24/7</div>
<div class="text-sm text-slate-300">AI Monitoring</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-slate-900 mb-6">
Complete AI Sentiment Defense Platform
</h2>
<p class="text-xl text-slate-600 max-w-3xl mx-auto">
Everything you need to monitor AI sentiment, equip your team, and protect your distribution pipeline
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<div class="space-y-8">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-12 h-12 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center">
<i data-lucide="radar" class="w-6 h-6 text-white"></i>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 mb-2">AI Sentiment Radar</h3>
<p class="text-slate-600">
Real-time monitoring across ChatGPT, Claude, Gemini testing your products vs. competitors.
Track sentiment trends and objection themes.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-12 h-12 bg-gradient-to-br from-green-500 to-teal-600 rounded-lg flex items-center justify-center">
<i data-lucide="shield-check" class="w-6 h-6 text-white"></i>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 mb-2">Objection Preemption Kit</h3>
<p class="text-slate-600">
Pre-approved counterpoints for top 20 AI objections. Quick-reference cards for advisors,
detailed briefs for wholesalers.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-12 h-12 bg-gradient-to-br from-purple-500 to-pink-600 rounded-lg flex items-center justify-center">
<i data-lucide="bar-chart-3" class="w-6 h-6 text-white"></i>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 mb-2">Competitive AI Intel</h3>
<p class="text-slate-600">
See how AI positions your competitors. Identify gaps and opportunities to close the
positioning advantage.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-12 h-12 bg-gradient-to-br from-orange-500 to-red-600 rounded-lg flex items-center justify-center">
<i data-lucide="users" class="w-6 h-6 text-white"></i>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 mb-2">Advisor Enablement</h3>
<p class="text-slate-600">
Monthly briefings, role-play scripts, and prompt libraries. Turn your team into
AI-savvy advisors ready for any objection.
</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="gradient-border p-8 rounded-2xl">
<div class="bg-slate-50 rounded-xl p-6">
<h4 class="font-bold text-lg mb-4">Live Dashboard Preview</h4>
<canvas id="sentimentChart" class="w-full h-64"></canvas>
<div class="mt-4 grid grid-cols-3 gap-4 text-sm">
<div class="text-center">
<div class="text-2xl font-bold text-green-600">73%</div>
<div class="text-slate-600">Positive</div>
</div>
<div class="text-center">
<div class="text-2xl font-bold text-yellow-600">19%</div>
<div class="text-slate-600">Neutral</div>
</div>
<div class="text-center">
<div class="text-2xl font-bold text-red-600">8%</div>
<div class="text-slate-600">Negative</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Interactive Demo Section -->
<section id="demo" class="py-20 bg-slate-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-slate-900 mb-6">
See How It Works
</h2>
<p class="text-xl text-slate-600 max-w-3xl mx-auto">
Experience how we turn AI objections into sales opportunities
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="bg-white rounded-2xl shadow-2xl overflow-hidden">
<div class="bg-gradient-to-r from-blue-600 to-purple-600 p-6">
<h3 class="text-white text-xl font-bold">AI Objection Simulator</h3>
<p class="text-blue-100">Test how AI responds to your product queries</p>
</div>
<div class="p-8">
<div class="mb-6">
<label class="block text-sm font-medium text-slate-700 mb-2">Enter your product query:</label>
<input type="text" id="productQuery"
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
placeholder="e.g., 'Should I invest in ABC Callable Yield Note?'"
value="Should I buy the ABC Callable Yield Note from XYZ Asset Management?">
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<div>
<h4 class="font-bold text-lg mb-3 text-slate-900">AI Response</h4>
<div id="aiResponse" class="bg-slate-50 p-4 rounded-lg text-sm">
<div class="text-slate-600 italic">Click "Generate Response" to see AI's typical answer...</div>
</div>
</div>
<div>
<h4 class="font-bold text-lg mb-3 text-slate-900">Our Counterpoint</h4>
<div id="counterpoint" class="bg-green-50 p-4 rounded-lg text-sm">
<div class="text-green-700 italic">Pre-approved response will appear here...</div>
</div>
</div>
</div>
<div class="mt-6 flex justify-center">
<button onclick="generateResponse()"
class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-8 py-3 rounded-lg hover:shadow-xl transition-all">
Generate Response
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ROI Calculator -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-slate-900 mb-6">
Calculate Your ROI
</h2>
<p class="text-xl text-slate-600 max-w-3xl mx-auto">
See the financial impact of protecting your distribution pipeline
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<h3 class="text-2xl font-bold mb-6">Input Your Numbers</h3>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Annual AUM ($M)</label>
<input type="number" id="aum" value="500"
class="w-full px-4 py-2 border rounded-lg" oninput="calculateROI()">
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Average Fee (%)</label>
<input type="number" id="fee" value="0.75" step="0.01"
class="w-full px-4 py-2 border rounded-lg" oninput="calculateROI()">
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">AI Objection Rate (%)</label>
<input type="number" id="objectionRate" value="15"
class="w-full px-4 py-2 border rounded-lg" oninput="calculateROI()">
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Success Rate Improvement (%)</label>
<input type="number" id="successRate" value="25"
class="w-full px-4 py-2 border rounded-lg" oninput="calculateROI()">
</div>
</div>
</div>
<div>
<h3 class="text-2xl font-bold mb-6">Projected Impact</h3>
<div class="bg-gradient-to-br from-blue-50 to-purple-50 p-6 rounded-xl">
<div class="space-y-4">
<div class="flex justify-between">
<span class="text-slate-600">Annual Revenue at Risk</span>
<span id="revenueAtRisk" class="font-bold text-red-600">$562,500</span>
</div>
<div class="flex justify-between">
<span class="text-slate-600">Protected Revenue</span>
<span id="protectedRevenue" class="font-bold text-green-600">$140,625</span>
</div>
<div class="flex justify-between">
<span class="text-slate-600">Platform Cost</span>
<span class="font-bold text-slate-900">$48,000</span>
</div>
<hr class="border-slate-300">
<div class="flex justify-between text-lg">
<span class="font-bold text-slate-900">Net ROI</span>
<span id="netROI" class="font-bold text-green-600">$92,625 (193%)</span>
</div>
</div>
</div>
<div class="mt-4 text-sm text-slate-600">
*Based on typical client implementation results
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-slate-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-slate-900 mb-6">
Simple, Scalable Pricing
</h2>
<p class="text-xl text-slate-600 max-w-3xl mx-auto">
Start with a pilot, scale to full deployment
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Pilot -->
<div class="bg-white rounded-2xl p-8 shadow-lg card-hover">
<div class="text-center">
<h3 class="text-2xl font-bold text-slate-900 mb-2">Pilot Program</h3>
<p class="text-slate-600 mb-6">90-day proof of concept</p>
<div class="text-4xl font-bold text-slate-900 mb-1">$60K-$90K</div>
<div class="text-slate-600 mb-6">one-time</div>
<ul class="text-left space-y-3 mb-8">
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">1 product category monitoring</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">3 competitor analysis</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">Top 10 objections mapped</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">50 advisor seats</span>
</li>
</ul>
<button onclick="scrollToSection('contact')"
class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white py-3 rounded-lg hover:shadow-lg transition-all">
Start Pilot
</button>
</div>
</div>
<!-- Core -->
<div class="bg-white rounded-2xl p-8 shadow-lg card-hover border-2 border-blue-500 relative">
<div class="absolute -top-3 left-1/2 transform -translate-x-1/2">
<span class="bg-blue-500 text-white px-4 py-1 rounded-full text-sm font-semibold">
Most Popular
</span>
</div>
<div class="text-center">
<h3 class="text-2xl font-bold text-slate-900 mb-2">Core Intelligence</h3>
<p class="text-slate-600 mb-6">Full platform deployment</p>
<div class="text-4xl font-bold text-slate-900 mb-1">$40</div>
<div class="text-slate-600 mb-6">per advisor/month</div>
<ul class="text-left space-y-3 mb-8">
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">Full product coverage</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">Real-time monitoring</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">All objection kits</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">Quarterly briefings</span>
</li>
</ul>
<button onclick="scrollToSection('contact')"
class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white py-3 rounded-lg hover:shadow-lg transition-all">
Get Started
</button>
</div>
</div>
<!-- Enterprise -->
<div class="bg-white rounded-2xl p-8 shadow-lg card-hover">
<div class="text-center">
<h3 class="text-2xl font-bold text-slate-900 mb-2">Enterprise</h3>
<p class="text-slate-600 mb-6">Custom deployment</p>
<div class="text-4xl font-bold text-slate-900 mb-1">Custom</div>
<div class="text-slate-600 mb-6">pricing</div>
<ul class="text-left space-y-3 mb-8">
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">On-premise deployment</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">Custom integrations</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">White-label option</span>
</li>
<li class="flex items-start">
<i data-lucide="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5"></i>
<span class="text-slate-600">Dedicated support</span>
</li>
</ul>
<button onclick="scrollToSection('contact')"
class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white py-3 rounded-lg hover:shadow-lg transition-all">
Contact Sales
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-5xl font-bold text-slate-900 mb-6">
Ready to Protect Your Distribution?
</h2>
<p class="text-xl text-slate-600">
Let's discuss your pilot program and see the platform in action
</p>
</div>
<form class="space-y-6" onsubmit="handleSubmit(event)">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">First Name</label>
<input type="text" name="firstName" required
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Last Name</label>
<input type="text" name="lastName" required
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Email</label>
<input type="email" name="email" required
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Company</label>
<input type="text" name="company" required
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">Role</label>
<select name="role" required
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
<option value="">Select your role</option>
<option value="head-distribution">Head of Distribution</option>
<option value="compliance">Chief Compliance Officer</option>
<option value="wealth-lead">Head of Wealth/Field Leadership</option>
<option value="advisor">Advisor/Team Lead</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-slate-700 mb-2">
What's your biggest AI-related concern?
</label>
<textarea name="concerns" rows="4" required
class="w-full px-4 py-3 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
placeholder="e.g., We're seeing clients getting conflicting advice from ChatGPT..."></textarea>
</div>
<button type="submit"
class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white py-4 rounded-lg text-lg font-semibold hover:shadow-2xl transition-all">
Schedule Strategy Call
</button>
</form>
<div class="mt-12 text-center">
<p class="text-slate-600">
Or email us directly at <a href="mailto:defense@aisentiment.ai" class="text-blue-600 hover:underline">defense@aisentiment.ai</a>
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-slate-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center">
<i data-lucide="shield-check" class="w-5 h-5 text-white"></i>
</div>
<span class="font-bold text-lg">AI Sentiment Defense</span>
</div>
<p class="text-slate-400">
Protecting your distribution pipeline in the AI era
</p>
</div>
<div>
<h4 class="font-semibold mb-4">Platform</h4>
<ul class="space-y-2 text-slate-400">
<li><a href="#features" class="hover:text-white transition-colors">Features</a></li>
<li><a href="#demo" class="hover:text-white transition-colors">Demo</a></li>
<li><a href="#pricing" class="hover:text-white transition-colors">Pricing</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Resources</h4>
<ul class="space-y-2 text-slate-400">
<li><a href="#" class="hover:text-white transition-colors">Case Studies</a></li>
<li><a href="#" class="hover:text-white transition-colors">Documentation</a></li>
<li><a href="#" class="hover:text-white transition-colors">Support</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Contact</h4>
<ul class="space-y-2 text-slate-400">
<li>defense@aisentiment.ai</li>
<li>+1 (555) 123-4567</li>
</ul>
</div>
</div>
<div class="border-t border-slate-800 mt-8 pt-8 text-center text-slate-400">
<p>© 2024 AI Sentiment Defense. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Initialize Lucide icons
lucide.createIcons();
// Mobile menu toggle
function toggleMobileMenu() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
}
// Smooth scroll
function scrollToSection(sectionId) {
document.getElementById(sectionId).scrollIntoView({ behavior: 'smooth' });
document.getElementById('mobile-menu').classList.add('hidden');
}
// Initialize chart
const ctx = document.getElementById('sentimentChart').getContext('2d');
new Chart(ctx, {
type: 'doughnut',
data: {
labels: ['Positive', 'Neutral', 'Negative'],
datasets: [{
data: [73, 19, 8],
backgroundColor: ['#10b981', '#f59e0b', '#ef4444'],
borderWidth: 0
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false
}
}
}
});
// ROI Calculator
function calculateROI() {
const aum = parseFloat(document.getElementById('aum').value) * 1000000;
const fee = parseFloat(document.getElementById('fee').value) / 100;
const objectionRate = parseFloat(document.getElementById('objectionRate').value) / 100;
const successRate = parseFloat(document.getElementById('successRate').value) / 100;
const annualRevenue = aum * fee;
const revenueAtRisk = annualRevenue * objectionRate;
const protectedRevenue = revenueAtRisk * successRate;
const platformCost = 48000;
const netROI = protectedRevenue - platformCost;
const roiPercent = ((netROI / platformCost) * 100).toFixed(0);
document.getElementById('revenueAtRisk').textContent = `$${(revenueAtRisk/1000000).toFixed(1)}M`;
document.getElementById('protectedRevenue').textContent = `$${(protectedRevenue/1000000).toFixed(1)}M`;
document.getElementById('netROI').textContent = `$${(netROI/1000).toFixed(0)}K (${roiPercent}%)`;
}
// AI Response Generator
function generateResponse() {
const query = document.getElementById('productQuery').value;
// Simulate typing animation
const aiResponse = document.getElementById('aiResponse');
const counterpoint = document.getElementById('counterpoint');
aiResponse.innerHTML = '<div class="typing-animation">Generating AI response...</div>';
counterpoint.innerHTML = '<div class="text-slate-400">Preparing counterpoint...</div>';
setTimeout(() => {
aiResponse.innerHTML = `
<div class="text-slate-700">
<p class="mb-2"><strong>Typical AI Response:</strong></p>
<p>"${query.includes('Callable') ? 'Callable notes can offer higher yields but cap upside and may expose you to loss of principal. An S&P 500 ETF might be a simpler, lower-cost alternative.' : 'This investment product has both benefits and risks. Consider consulting with a financial advisor for personalized advice.'}"</p>
<div class="mt-3 flex items-center text-sm text-slate-500">
<i data-lucide="alert-triangle" class="w-4 h-4 mr-1 text-yellow-500"></i>
<span>Sentiment: Negative (AI steering toward alternatives)</span>
</div>
</div>
`;
counterpoint.innerHTML = `
<div class="text-green-700">
<p class="mb-2"><strong>Pre-approved Counterpoint:</strong></p>
<p>"While AI correctly notes the yield advantage, it misses the key benefit: downside protection. In the current environment, this callable note offers 20% downside buffer with 8% annual yield - outperforming the S&P 500 in flat/down markets while limiting losses."</p>
<div class="mt-3">
<button class="bg-green-600 text-white px-3 py-1 rounded text-sm">Copy to clipboard</button>
</div>
</div>
`;
lucide.createIcons();
}, 1500);
}
// Form submission
function handleSubmit(event) {
event.preventDefault();
// Show loading state
const button = event.target.querySelector('button[type="submit"]');
const originalText = button.textContent;
button.textContent = 'Sending...';
button.disabled = true;
// Simulate API call
setTimeout(() => {
button.textContent = 'Sent! We\'ll be in touch';
button.classList.add('bg-green-600');
setTimeout(() => {
button.textContent = originalText;
button.disabled = false;
button.classList.remove('bg-green-600');
event.target.reset();
}, 3000);
}, 1500);
}
// Stagger animations on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('stagger-animation');
}
});
}, observerOptions);
document.querySelectorAll('.card-hover').forEach(el => {
observer.observe(el);
});
// Initialize ROI calculator
calculateROI();
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=stuartkerr/finalign" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |