File size: 34,359 Bytes
99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 25bb918 99ac002 | 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 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kortex AI - The Accountable B2B Sales Platform</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(23, 32, 42, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 2rem;
transition: all 0.3s ease;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: white;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-menu a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-menu a:hover {
color: #1ABC9C;
}
/* Demo Links Banner */
.demo-banner {
background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
color: white;
padding: 20px 0;
text-align: center;
position: relative;
overflow: hidden;
margin-top: 70px;
}
.demo-banner::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { left: -100%; }
100% { left: 100%; }
}
.demo-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.demo-title {
font-size: 1.3rem;
font-weight: bold;
margin-bottom: 20px;
line-height: 1.4;
}
.demo-links {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
}
.demo-link {
background: rgba(255,255,255,0.2);
color: white;
padding: 15px 25px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.3);
display: flex;
align-items: center;
gap: 10px;
min-width: 200px;
justify-content: center;
}
.demo-link:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.demo-icon {
font-size: 1.2rem;
}
/* Hero Section */
.hero {
height: 100vh;
background: linear-gradient(135deg, #17202A 0%, #34495E 100%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.hero-content {
max-width: 900px;
padding: 2rem;
z-index: 2;
}
.hero-image {
width: 400px;
height: 250px;
background: url('image.png') center/cover no-repeat;
background-color: #2C3E50;
margin: 0 auto 2rem;
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0,0,0,0.3);
position: relative;
opacity: 0;
animation: fadeInUp 1s ease 0.3s forwards;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 300;
opacity: 0;
animation: fadeInUp 1s ease 0.5s forwards;
}
.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
color: #1ABC9C;
opacity: 0;
animation: fadeInUp 1s ease 0.7s forwards;
}
.hero-tagline {
font-size: 1.2rem;
margin-bottom: 3rem;
opacity: 0.9;
animation: fadeInUp 1s ease 0.9s forwards;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
opacity: 0;
animation: fadeInUp 1s ease 1.1s forwards;
}
.btn {
padding: 1rem 2rem;
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
}
.btn-primary {
background: #1ABC9C;
color: #17202A;
}
.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Section Styles */
.section {
padding: 5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.section h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: #17202A;
}
/* Problem/Solution Section */
.problem-solution {
background: #f8f9fa;
}
.problem-solution-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
.problem-card, .solution-card {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.problem-card { border-left: 5px solid #E74C3C; }
.solution-card { border-left: 5px solid #1ABC9C; }
.card-icon { font-size: 3rem; margin-bottom: 1rem; }
.card-title { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 600; }
.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; }
.feature-list li:before { content: "✓ "; color: #1ABC9C; font-weight: bold; }
/* Core Modules Section */
.core-modules {
background: linear-gradient(135deg, #5D6D7E 0%, #2C3E50 100%);
color: white;
}
.modules-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.module-card {
background: rgba(255,255,255,0.1);
padding: 2rem;
border-radius: 15px;
text-align: center;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
}
.module-card h3 { margin-bottom: 1rem; font-size: 1.3rem; color: #1ABC9C; }
/* Managing Intelligence Section */
.managing-intelligence {
background: #f8f9fa;
}
.intelligence-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}
.intelligence-card {
background: white;
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-top: 5px solid #8E44AD;
}
/* Business Model Section */
.business-model {
padding: 5rem 0;
}
.revenue-projection {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.projection-card {
background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
color: white;
padding: 2rem;
border-radius: 15px;
text-align: center;
}
.projection-year { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.projection-revenue { font-size: 2.5rem; font-weight: bold; margin-bottom: 0.5rem; }
.projection-details { font-size: 0.9rem; opacity: 0.9; }
/* Funding Section */
.funding {
background: linear-gradient(135deg, #17202A 0%, #2C3E50 100%);
color: white;
}
.funding-timeline {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 3rem;
}
.timeline-card {
background: rgba(255,255,255,0.1);
padding: 2rem;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
}
.timeline-phase { font-size: 1.1rem; font-weight: 600; color: #1ABC9C; margin-bottom: 1rem; }
/* Footer */
.footer {
background: #17202A;
color: white;
padding: 2rem;
text-align: center;
}
/* Final Demo Section */
.final-demo {
background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
color: white;
padding: 4rem 2rem;
text-align: center;
}
.final-demo h2 {
color: white;
margin-bottom: 2rem;
}
.final-demo-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
max-width: 900px;
margin: 0 auto;
}
.final-demo-card {
background: rgba(255,255,255,0.15);
padding: 2rem;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.3);
transition: all 0.3s ease;
}
.final-demo-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.final-demo-link {
display: inline-block;
background: white;
color: #8E44AD;
padding: 15px 30px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
margin-top: 1rem;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.final-demo-link:hover {
background: #f8f9fa;
transform: scale(1.05);
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
/* Mobile Navigation */
.nav-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}
.nav-menu.mobile-open {
display: flex;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(23, 32, 42, 0.98);
flex-direction: column;
padding: 1rem;
gap: 1rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
/* Navigation Mobile */
.navbar {
padding: 1rem;
}
.nav-toggle {
display: block;
}
.nav-menu {
display: none;
}
/* Demo Banner Mobile */
.demo-banner {
margin-top: 60px;
padding: 25px 0;
}
.demo-title {
font-size: 1.1rem;
margin-bottom: 25px;
padding: 0 1rem;
line-height: 1.5;
}
.demo-links {
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 0 1rem;
}
.demo-link {
min-width: 280px;
max-width: 90%;
padding: 18px 25px;
font-size: 1rem;
}
/* Hero Mobile */
.hero {
height: auto;
min-height: 80vh;
padding: 4rem 1rem;
}
.hero h1 {
font-size: 2.2rem;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
line-height: 1.4;
margin-bottom: 1.5rem;
}
.hero-image {
width: 280px;
height: 180px;
margin-bottom: 2rem;
}
.hero-tagline {
font-size: 1rem;
margin-bottom: 2rem;
padding: 0 1rem;
}
.cta-buttons {
flex-direction: column;
gap: 1rem;
align-items: center;
}
.btn {
width: 250px;
padding: 1.2rem 2rem;
}
/* Sections Mobile */
.section {
padding: 3rem 1rem;
}
.section h2 {
font-size: 2rem;
line-height: 1.3;
margin-bottom: 2rem;
}
/* Problem/Solution Grid Mobile */
.problem-solution-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.problem-card, .solution-card {
padding: 1.5rem;
}
.card-title {
font-size: 1.3rem;
line-height: 1.3;
}
/* Modules Grid Mobile */
.modules-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.module-card {
padding: 1.5rem;
}
/* Intelligence Grid Mobile */
.intelligence-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.intelligence-card {
padding: 2rem;
}
/* Revenue Projection Mobile */
.revenue-projection {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.projection-revenue {
font-size: 2rem;
}
/* Funding Timeline Mobile */
.funding-timeline {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.timeline-card {
padding: 1.5rem;
}
/* Final Demo Mobile */
.final-demo {
padding: 3rem 1rem;
}
.final-demo-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.final-demo-card {
padding: 2rem 1.5rem;
}
.final-demo-link {
padding: 15px 25px;
font-size: 1rem;
width: 100%;
max-width: 280px;
}
}
/* Mobile Touch Optimization */
@media (max-width: 480px) {
.demo-title {
font-size: 1rem;
padding: 0 0.5rem;
}
.demo-link {
min-width: 260px;
padding: 16px 20px;
font-size: 0.95rem;
}
.hero h1 {
font-size: 1.8rem;
}
.hero-subtitle {
font-size: 1rem;
}
.hero-image {
width: 240px;
height: 150px;
}
.btn {
width: 220px;
padding: 1rem 1.5rem;
}
.section {
padding: 2.5rem 0.5rem;
}
.section h2 {
font-size: 1.7rem;
}
.problem-card, .solution-card {
padding: 1.2rem;
}
.module-card, .intelligence-card, .timeline-card {
padding: 1.2rem;
}
.final-demo-card {
padding: 1.5rem 1rem;
}
}
.scroll-animate { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.scroll-animate.animate { opacity: 1; transform: translateY(0); }
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="logo">🧠 Kortex AI</div>
<button class="nav-toggle" id="nav-toggle">☰</button>
<ul class="nav-menu" id="nav-menu">
<li><a href="#overview">The Problem</a></li>
<li><a href="#solution">Our Solution</a></li>
<li><a href="#advantage">Our Edge</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#funding">Investment</a></li>
<li><a href="#demo">Live Demo</a></li>
</ul>
</div>
</nav>
<!-- Demo Banner -->
<section class="demo-banner">
<div class="demo-content">
<div class="demo-title">🚀 Experience Kortex AI Live - Try Our Working Modules</div>
<div class="demo-links">
<a href="https://aibyml-procurement-assistant.hf.space" target="_blank" class="demo-link">
<span class="demo-icon">📋</span>
<span>Auto Quotation Engine</span>
</a>
<a href="https://heartily-lenient-honeybee.ngrok-free.app" target="_blank" class="demo-link">
<span class="demo-icon">🤖</span>
<span>AI Sales Chatbot</span>
</a>
</div>
</div>
</section>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<div class="hero-image"></div>
<h1>Don't Just Automate Sales.</h1>
<h1>Lead Them.</h1>
<div class="hero-subtitle">The B2B Sales Platform That Manages Intelligence</div>
<div class="hero-tagline">
<p>An integrated AI workforce that handles quoting, approvals, and </p>
<p> fulfillment—with every decision logged and explained.</p>
</div>
<div class="cta-buttons">
<a href="#advantage" class="btn btn-primary">Discover Our Edge</a>
<a href="#overview" class="btn btn-secondary">See The Problem</a>
</div>
</div>
</section>
<!-- Problem/Solution Section -->
<section class="problem-solution" id="overview">
<div class="section">
<h2>The "Black Box" Sales Problem</h2>
<div class="problem-solution-grid">
<div class="problem-card scroll-animate">
<div class="card-icon">❌</div>
<div class="card-title">The Chaos of Modern B2B Sales</div>
<p>Sales teams face a fragmented landscape where automation creates more problems than it solves:</p>
<ul class="feature-list" style="list-style-type: '✗ '; padding-left: 1.5rem;">
<li>AI chatbots give wrong answers, eroding client trust.</li>
<li>Unchecked discounts destroy profit margins.</li>
<li>Sales, Finance, and Logistics operate in silos.</li>
<li>Manual follow-ups lead to lost deals.</li>
<li>No visibility into AI decision-making.</li>
</ul>
<p style="margin-top: 1rem; font-weight: 600; color: #E74C3C;">Result: Profit leakage, stalled deals, and frustrated teams who don't trust their tools.</p>
</div>
<div class="solution-card scroll-animate">
<div class="card-icon">✅</div>
<div class="card-title">The Kortex Solution: Managed Intelligence</div>
<p>We replace chaos with an accountable, transparent AI-driven workflow:</p>
<ul class="feature-list">
<li>Expert AI that provides accurate, useful advice.</li>
<li>An automated discount engine with traceable approvals.</li>
<li>A unified platform connecting all business units.</li>
<li>Proactive follow-ups and operational alerts.</li>
<li>A complete audit trail for every AI-assisted decision.</li>
</ul>
<p style="margin-top: 1rem; font-weight: 600; color: #1ABC9C;">Result: Increased deal velocity, protected margins, and a single source of truth.</p>
</div>
</div>
</div>
</section>
<!-- Core Modules Section -->
<section class="core-modules" id="solution">
<div class="section">
<h2 style="color: white;">A Unified AI Workforce</h2>
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9;">
Seven integrated modules that manage the entire sales lifecycle.
</p>
<div class="modules-grid">
<div class="module-card scroll-animate"><h3>Proactive AI Chat</h3><p>Engages clients with expert product recommendations.</p></div>
<div class="module-card scroll-animate"><h3>Discount & Quote Manager</h3><p>Generates quotes with traceable approval workflows.</p></div>
<div class="module-card scroll-animate"><h3>Finance Connector</h3><p>Links to accounting systems for seamless invoicing.</p></div>
<div class="module-card scroll-animate"><h3>Logistics Integrator</h3><p>Manages delivery coordination and timelines.</p></div>
<div class="module-card scroll-animate"><h3>Customer Service Bridge</h3><p>Tracks and resolves all after-sales support issues.</p></div>
<div class="module-card scroll-animate"><h3>Analytics Dashboard</h3><p>Monitors sales funnels and process efficiency.</p></div>
</div>
</div>
</section>
<!-- Managing Intelligence - The Unfair Advantage -->
<section class="managing-intelligence" id="advantage">
<div class="section">
<h2>Our Unfair Advantage: We Manage the Intelligence</h2>
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto;">
While others offer "black box" AI, our platform is built on transparency, memory, and accountability. This is our core mission and your greatest asset.
</p>
<div class="intelligence-grid">
<div class="intelligence-card scroll-animate">
<div class="card-icon">🧠</div>
<h3 class="card-title">Persistent Memory System</h3>
<p>Kortex remembers every interaction with a client, across all touchpoints. This allows the AI to build rapport, understand context deeply, and make smarter, personalized recommendations over time, just like a human expert.</p>
</div>
<div class="intelligence-card scroll-animate">
<div class="card-icon">🔍</div>
<h3 class="card-title">Traceable Agent Reasoning</h3>
<p>Every significant decision—from a product suggestion to a discount offer—is logged with a "reasoning trace." You can see *why* the AI made a choice, providing unprecedented transparency, debuggability, and trust for your sales team.</p>
</div>
<div class="intelligence-card scroll-animate">
<div class="card-icon">🤝</div>
<h3 class="card-title">Multi-Agent Collaboration</h3>
<p>Our modules aren't siloed. The Sales AI "talks" to the Finance AI to confirm budget constraints before offering a discount. The Logistics AI informs the Service AI of a potential delay. This creates a cooperative digital workforce that solves problems proactively.</p>
</div>
</div>
</div>
</section>
<!-- Business Model Section -->
<section class="business-model" id="business">
<div class="section">
<h2>Commercial Strategy</h2>
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 2rem;">
A SaaS model designed for scalability and value creation.
</p>
<div class="revenue-projection">
<div class="projection-card scroll-animate">
<div class="projection-year">Year 1</div>
<div class="projection-revenue">HK$150K</div>
<div class="projection-details">10 clients × HK$15K/year<br><small>Core Workflow Automation</small></div>
</div>
<div class="projection-card scroll-animate">
<div class="projection-year">Year 2</div>
<div class="projection-revenue">HK$1.25M</div>
<div class="projection-details">50 clients × HK$25K/year<br><small>Full Integration Suite</small></div>
</div>
<div class="projection-card scroll-animate">
<div class="projection-year">Year 3</div>
<div class="projection-revenue">HK$5.4M</div>
<div class="projection-details">150 clients × HK$36K/year<br><small>Managed Intelligence Premium</small></div>
</div>
</div>
</div>
</section>
<!-- Funding & Roadmap Section -->
<section class="funding" id="roadmap">
<div class="section">
<h2 style="color: white;">HK$500K Investment & Roadmap</h2>
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9;">
Fueling the development of the first truly accountable AI sales platform.
</p>
<div class="funding-timeline">
<div class="timeline-card scroll-animate">
<div class="timeline-phase">Phase 1 (MVP) - 1 Month</div>
<h3>Core Workflow & Control</h3>
<p>Build the AI chat, quote engine, and the essential discount approval workflow. Launch with pilot customers.</p>
</div>
<div class="timeline-card scroll-animate">
<div class="timeline-phase">Phase 2 (Integration) - 2 Months</div>
<h3>Seamless Connections</h3>
<p>Develop deep API integrations for major accounting, logistics, and CRM platforms. Roll out the first analytics dashboard.</p>
</div>
<div class="timeline-card scroll-animate">
<div class="timeline-phase">Phase 3 (Intelligence) - 2 Months</div>
<h3>The Unfair Advantage</h3>
<p>Fully implement the persistent memory, reasoning trace logs, and multi-agent collaboration features.</p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem; background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 15px;">
<h3 style="color: #1ABC9C; margin-bottom: 1rem;">💰 Use of Funds</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;">
<div><p><strong>Platform Development (40%):</strong> Core engineering for the AI engine and modules.</p></div>
<div><p><strong>Team Expansion (40%):</strong> Hire specialized AI and backend talent.</p></div>
<div><p><strong>Go-to-Market (20%):</strong> Initial sales, marketing, and pilot customer support.</p></div>
</div>
</div>
</div>
</section>
<!-- Final Demo Section -->
<section class="final-demo" id="demo">
<div class="section">
<h2>Experience The Platform In Action</h2>
<p style="font-size: 1.2rem; margin-bottom: 3rem; opacity: 0.9;">
See how Kortex AI transforms B2B sales with intelligence, transparency, and accountability.
</p>
<div class="final-demo-grid">
<div class="final-demo-card scroll-animate">
<div class="card-icon">📋</div>
<h3 style="color: #1ABC9C; margin-bottom: 1rem;">Auto Quotation Engine</h3>
<p>Experience our AI-powered quotation system that automatically generates accurate quotes with approval workflows and margin protection.</p>
<a href="https://aibyml-procurement-assistant.hf.space" target="_blank" class="final-demo-link">
Try Auto Quotation →
</a>
</div>
<div class="final-demo-card scroll-animate">
<div class="card-icon">🤖</div>
<h3 style="color: #1ABC9C; margin-bottom: 1rem;">AI Sales Chatbot</h3>
<p>Interact with our intelligent sales assistant that understands your needs, recommends products, and guides you through the entire buying process.</p>
<a href="https://heartily-lenient-honeybee.ngrok-free.app" target="_blank" class="final-demo-link">
Chat With AI →
</a>
</div>
</div>
<div style="margin-top: 3rem; padding: 2rem; background: rgba(255,255,255,0.1); border-radius: 15px;">
<p style="font-size: 1.1rem; opacity: 0.9;">
<strong>💡 Demo Note:</strong> These working prototypes showcase the core intelligence and workflow automation that powers the Kortex AI platform. Experience firsthand how AI can transform B2B sales with accountability and transparency.
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="section">
<h2>Ready to Lead?</h2>
<p>© 2025 Kortex AI. We're not just building tools. We're managing intelligence.</p>
<p style="margin-top: 1rem;">Contact: <a href="mailto:invest@kortex-ai.com" style="color: #1ABC9C;">invest@kortex-ai.com</a></p>
</div>
</footer>
<script>
// Mobile navigation toggle
const navToggle = document.getElementById('nav-toggle');
const navMenu = document.getElementById('nav-menu');
navToggle.addEventListener('click', function() {
navMenu.classList.toggle('mobile-open');
});
// Close mobile menu when clicking on a link
document.querySelectorAll('.nav-menu a').forEach(link => {
link.addEventListener('click', function() {
navMenu.classList.remove('mobile-open');
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
});
});
// Scroll animations
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.scroll-animate').forEach(el => observer.observe(el));
// Close mobile menu when clicking outside
document.addEventListener('click', function(e) {
if (!navToggle.contains(e.target) && !navMenu.contains(e.target)) {
navMenu.classList.remove('mobile-open');
}
});
// Handle touch events for better mobile interaction
let touchStartY = 0;
let touchEndY = 0;
document.addEventListener('touchstart', function(e) {
touchStartY = e.changedTouches[0].screenY;
});
document.addEventListener('touchend', function(e) {
touchEndY = e.changedTouches[0].screenY;
handleSwipe();
});
function handleSwipe() {
const swipeDistance = touchEndY - touchStartY;
// Add any swipe functionality if needed
}
</script>
</body>
</html> |