Spaces:
Running
Running
File size: 74,258 Bytes
1d82fff |
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 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GrowthOps AI - Your AI Growth Co-Pilot</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js" defer></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.matrix-cell {
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 8px;
font-weight: bold;
color: white;
}
.animate-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
.slide-down {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-out;
}
.slide-down.active {
max-height: 1000px;
transition: max-height 0.5s ease-in;
}
</style>
</head>
<body class="bg-gray-50 font-sans" x-data="app()">
<!-- Navbar -->
<nav class="bg-white shadow-lg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-rocket text-purple-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">GrowthOps AI</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#vc-playbooks" class="text-gray-900 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium">VC Playbooks</a>
<a href="#bcg-engine" class="text-gray-900 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium">BCG Engine</a>
<a href="#moonshot" class="text-gray-900 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium">Moonshot</a>
<a href="#ai-lab" class="text-gray-900 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium">AI Lab</a>
<button @click="openApiModal = true" class="bg-purple-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-purple-700 transition">
<i class="fas fa-key mr-1"></i> API Key
</button>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button @click="mobileMenuOpen = !mobileMenuOpen" type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden slide-down" :class="{ 'active': mobileMenuOpen }">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#vc-playbooks" class="text-gray-900 hover:text-purple-600 block px-3 py-2 rounded-md text-base font-medium">VC Playbooks</a>
<a href="#bcg-engine" class="text-gray-900 hover:text-purple-600 block px-3 py-2 rounded-md text-base font-medium">BCG Engine</a>
<a href="#moonshot" class="text-gray-900 hover:text-purple-600 block px-3 py-2 rounded-md text-base font-medium">Moonshot</a>
<a href="#ai-lab" class="text-gray-900 hover:text-purple-600 block px-3 py-2 rounded-md text-base font-medium">AI Lab</a>
<button @click="openApiModal = true; mobileMenuOpen = false" class="bg-purple-600 text-white block px-3 py-2 rounded-md text-base font-medium hover:bg-purple-700 transition w-full">
<i class="fas fa-key mr-1"></i> API Key
</button>
</div>
</div>
</nav>
<!-- API Key Modal -->
<div x-show="openApiModal" class="fixed z-10 inset-0 overflow-y-auto" aria-labelledby="modal-title" role="dialog" aria-modal="true">
<div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
<div @click="openApiModal = false" class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" aria-hidden="true"></div>
<span class="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">​</span>
<div class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full">
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
<h3 class="text-lg leading-6 font-medium text-gray-900 mb-4" id="modal-title">
<i class="fas fa-key mr-2"></i> Enter Your DeepSeek API Key
</h3>
<div class="mt-2">
<input x-model="apiKey" type="password" class="shadow-sm focus:ring-purple-500 focus:border-purple-500 block w-full sm:text-sm border-gray-300 rounded-md p-2 border" placeholder="sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
<p class="mt-2 text-sm text-gray-500">
Your API key is stored locally in your browser and never sent to our servers.
</p>
</div>
</div>
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
<button @click="openApiModal = false; saveApiKey()" type="button" class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-purple-600 text-base font-medium text-white hover:bg-purple-700 focus:outline-none sm:ml-3 sm:w-auto sm:text-sm">
Save Key
</button>
<button @click="openApiModal = false" type="button" class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
Cancel
</button>
</div>
</div>
</div>
</div>
<!-- Hero Section -->
<div class="gradient-bg text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Your AI Growth Co-Pilot</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">
Combine VC frameworks, BCG strategy engines, and Elon's first principles into one powerful growth system.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#vc-playbooks" class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-bold text-lg transition">
<i class="fas fa-play mr-2"></i> Start Growing
</a>
<a href="#ai-lab" class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-600 px-8 py-3 rounded-lg font-bold text-lg transition">
<i class="fas fa-flask mr-2"></i> Try AI Lab
</a>
</div>
</div>
</div>
</div>
<!-- VC Growth Playbooks Section -->
<section id="vc-playbooks" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">
<i class="fas fa-chart-line text-purple-600 mr-2"></i> VC Growth Playbooks
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Proven startup growth systems used by top venture-backed companies
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Market Expansion Card -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-globe"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Market Expansion</h3>
<p class="text-gray-600 mb-4">
Identify and execute on new market opportunities with data-driven strategies.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Current Stage</label>
<select x-model="marketExpansion.stage" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="pre-launch">Pre-Launch</option>
<option value="early-traction">Early Traction</option>
<option value="scaling">Scaling</option>
<option value="mature">Mature</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Target Markets</label>
<input x-model="marketExpansion.markets" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. US, Europe, Asia">
</div>
<button @click="generateVcPlan('marketExpansion')" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!marketExpansion.loading">Generate Plan</span>
<span x-show="marketExpansion.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Generating...
</span>
</button>
<div x-show="marketExpansion.result" class="mt-4 p-4 bg-white rounded-lg border border-gray-200">
<h4 class="font-bold mb-2">Your Market Expansion Plan:</h4>
<div x-html="marketExpansion.result" class="prose max-w-none"></div>
<button @click="downloadPlan('Market Expansion Plan', marketExpansion.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Plan
</button>
</div>
</div>
<!-- Product Iteration Card -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-cogs"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Product Iteration</h3>
<p class="text-gray-600 mb-4">
Build products users love with rapid experimentation and feedback loops.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Product Type</label>
<select x-model="productIteration.type" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="b2b">B2B</option>
<option value="b2c">B2C</option>
<option value="marketplace">Marketplace</option>
<option value="saas">SaaS</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Key Challenges</label>
<input x-model="productIteration.challenges" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. retention, onboarding">
</div>
<button @click="generateVcPlan('productIteration')" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!productIteration.loading">Generate Plan</span>
<span x-show="productIteration.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Generating...
</span>
</button>
<div x-show="productIteration.result" class="mt-4 p-4 bg-white rounded-lg border border-gray-200">
<h4 class="font-bold mb-2">Your Product Iteration Plan:</h4>
<div x-html="productIteration.result" class="prose max-w-none"></div>
<button @click="downloadPlan('Product Iteration Plan', productIteration.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Plan
</button>
</div>
</div>
<!-- Demand Generation Card -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-bullhorn"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Demand Generation</h3>
<p class="text-gray-600 mb-4">
Create predictable, scalable demand for your product or service.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Budget Level</label>
<select x-model="demandGeneration.budget" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="bootstrapped">Bootstrapped ($0-$5k)</option>
<option value="seed">Seed ($5k-$50k)</option>
<option value="series-a">Series A ($50k-$500k)</option>
<option value="growth">Growth ($500k+)</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Target Audience</label>
<input x-model="demandGeneration.audience" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. CMOs, SMBs">
</div>
<button @click="generateVcPlan('demandGeneration')" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!demandGeneration.loading">Generate Plan</span>
<span x-show="demandGeneration.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Generating...
</span>
</button>
<div x-show="demandGeneration.result" class="mt-4 p-4 bg-white rounded-lg border border-gray-200">
<h4 class="font-bold mb-2">Your Demand Generation Plan:</h4>
<div x-html="demandGeneration.result" class="prose max-w-none"></div>
<button @click="downloadPlan('Demand Generation Plan', demandGeneration.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Plan
</button>
</div>
</div>
<!-- Capital Optimization Card -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-coins"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Capital Optimization</h3>
<p class="text-gray-600 mb-4">
Maximize your runway and capital efficiency for sustainable growth.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Funding Stage</label>
<select x-model="capitalOptimization.stage" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="pre-seed">Pre-Seed</option>
<option value="seed">Seed</option>
<option value="series-a">Series A</option>
<option value="series-b">Series B+</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Current Burn Rate</label>
<input x-model="capitalOptimization.burn" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. $50k/month">
</div>
<button @click="generateVcPlan('capitalOptimization')" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!capitalOptimization.loading">Generate Plan</span>
<span x-show="capitalOptimization.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Generating...
</span>
</button>
<div x-show="capitalOptimization.result" class="mt-4 p-4 bg-white rounded-lg border border-gray-200">
<h4 class="font-bold mb-2">Your Capital Optimization Plan:</h4>
<div x-html="capitalOptimization.result" class="prose max-w-none"></div>
<button @click="downloadPlan('Capital Optimization Plan', capitalOptimization.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Plan
</button>
</div>
</div>
</div>
</div>
</section>
<!-- BCG Strategy Engine Section -->
<section id="bcg-engine" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">
<i class="fas fa-chess-board text-purple-600 mr-2"></i> BCG Strategy Engine
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Diagnose business health and plot strategic scaling moves like a top consultant
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Growth-Share Matrix -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover lg:col-span-2">
<h3 class="text-xl font-bold text-gray-900 mb-4">AI-Powered Growth-Share Matrix</h3>
<p class="text-gray-600 mb-6">
Enter your products or services and let AI classify them into Stars, Cash Cows, Dogs, and Question Marks.
</p>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Enter Products/Services (one per line)</label>
<textarea x-model="bcgMatrix.products" rows="4" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="Product 1\nProduct 2\nService 1"></textarea>
</div>
<button @click="analyzeBcgMatrix()" class="bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!bcgMatrix.loading">Analyze Portfolio</span>
<span x-show="bcgMatrix.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Analyzing...
</span>
</button>
<div x-show="bcgMatrix.result" class="mt-6">
<h4 class="font-bold mb-4">Your Growth-Share Matrix:</h4>
<div class="grid grid-cols-2 gap-4">
<!-- Stars -->
<div class="matrix-cell bg-yellow-500">
<div>
<div class="text-lg">Stars</div>
<div x-text="bcgMatrix.stars.join(', ') || 'None'" class="text-sm"></div>
</div>
</div>
<!-- Cash Cows -->
<div class="matrix-cell bg-green-600">
<div>
<div class="text-lg">Cash Cows</div>
<div x-text="bcgMatrix.cows.join(', ') || 'None'" class="text-sm"></div>
</div>
</div>
<!-- Question Marks -->
<div class="matrix-cell bg-blue-500">
<div>
<div class="text-lg">Question Marks</div>
<div x-text="bcgMatrix.questions.join(', ') || 'None'" class="text-sm"></div>
</div>
</div>
<!-- Dogs -->
<div class="matrix-cell bg-red-500">
<div>
<div class="text-lg">Dogs</div>
<div x-text="bcgMatrix.dogs.join(', ') || 'None'" class="text-sm"></div>
</div>
</div>
</div>
<div x-html="bcgMatrix.strategy" class="mt-4 p-4 bg-gray-50 rounded-lg prose max-w-none"></div>
</div>
</div>
<!-- Digital Readiness Assessor -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<h3 class="text-xl font-bold text-gray-900 mb-4">Digital Readiness Assessor</h3>
<p class="text-gray-600 mb-6">
Evaluate your digital transformation maturity and get a customized roadmap.
</p>
<div class="space-y-4">
<div>
<label class="flex items-center">
<input x-model="digitalReadiness.leadership" type="checkbox" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">Digital-first leadership mindset</span>
</label>
</div>
<div>
<label class="flex items-center">
<input x-model="digitalReadiness.data" type="checkbox" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">Data-driven decision making</span>
</label>
</div>
<div>
<label class="flex items-center">
<input x-model="digitalReadiness.tech" type="checkbox" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">Modern tech infrastructure</span>
</label>
</div>
<div>
<label class="flex items-center">
<input x-model="digitalReadiness.talent" type="checkbox" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">Digital talent pipeline</span>
</label>
</div>
<div>
<label class="flex items-center">
<input x-model="digitalReadiness.customer" type="checkbox" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">Digital customer experience</span>
</label>
</div>
</div>
<button @click="assessDigitalReadiness()" class="mt-6 bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!digitalReadiness.loading">Assess Readiness</span>
<span x-show="digitalReadiness.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Assessing...
</span>
</button>
<div x-show="digitalReadiness.result" class="mt-6">
<h4 class="font-bold mb-2">Your Digital Readiness Score: <span x-text="digitalReadiness.score" class="text-purple-600"></span>/100</h4>
<div class="w-full bg-gray-200 rounded-full h-4">
<div class="bg-purple-600 h-4 rounded-full" :style="'width: ' + digitalReadiness.score + '%'"></div>
</div>
<div x-html="digitalReadiness.roadmap" class="mt-4 p-4 bg-gray-50 rounded-lg prose max-w-none"></div>
</div>
</div>
</div>
<!-- Customer Journey Optimizer -->
<div class="mt-12 bg-white rounded-xl p-6 shadow-md card-hover">
<h3 class="text-xl font-bold text-gray-900 mb-4">Customer Journey Optimizer</h3>
<p class="text-gray-600 mb-6">
Upload or describe your customer touchpoints to identify optimization opportunities.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">Describe Your Customer Journey</label>
<textarea x-model="customerJourney.description" rows="6" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="Awareness: Social media ads\nConsideration: Landing page, demo\nPurchase: Checkout flow\nPost-purchase: Onboarding emails, support"></textarea>
<div class="mt-4">
<label class="block text-sm font-medium text-gray-700 mb-2">Or Upload Journey Map (CSV)</label>
<div class="flex items-center">
<input type="file" @change="handleJourneyUpload" class="hidden" id="journeyUpload">
<label for="journeyUpload" class="cursor-pointer bg-gray-100 hover:bg-gray-200 text-gray-700 py-2 px-4 rounded-md font-medium transition">
<i class="fas fa-upload mr-2"></i> Choose File
</label>
<span x-text="customerJourney.fileName || 'No file chosen'" class="ml-2 text-sm text-gray-500"></span>
</div>
</div>
<button @click="optimizeCustomerJourney()" class="mt-6 bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!customerJourney.loading">Optimize Journey</span>
<span x-show="customerJourney.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Optimizing...
</span>
</button>
</div>
<div x-show="customerJourney.result" class="p-4 bg-gray-50 rounded-lg">
<h4 class="font-bold mb-4">Optimization Opportunities:</h4>
<div x-html="customerJourney.result" class="prose max-w-none"></div>
<div class="mt-6 grid grid-cols-2 gap-4">
<div class="p-3 bg-white rounded-lg border border-purple-200">
<div class="text-purple-600 mb-1">
<i class="fas fa-arrow-up"></i> Upsell Moments
</div>
<div x-html="customerJourney.upsells" class="text-sm"></div>
</div>
<div class="p-3 bg-white rounded-lg border border-red-200">
<div class="text-red-600 mb-1">
<i class="fas fa-exclamation-triangle"></i> Churn Risks
</div>
<div x-html="customerJourney.churn" class="text-sm"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Elon Musk Moonshot Planner Section -->
<section id="moonshot" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">
<i class="fas fa-moon text-purple-600 mr-2"></i> Elon Musk Moonshot Planner
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Think 10x bigger, break down problems with first principles, and build world-changing ventures
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<!-- First Principles Breakdown -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<h3 class="text-xl font-bold text-gray-900 mb-4">First Principles Breakdown</h3>
<p class="text-gray-600 mb-6">
Deconstruct your challenge into fundamental truths to find innovative solutions.
</p>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Describe Your Challenge</label>
<textarea x-model="firstPrinciples.challenge" rows="4" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. 'Batteries are too expensive for mass EV adoption'"></textarea>
</div>
<button @click="breakdownFirstPrinciples()" class="bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!firstPrinciples.loading">Break Down Challenge</span>
<span x-show="firstPrinciples.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Analyzing...
</span>
</button>
<div x-show="firstPrinciples.result" class="mt-6">
<h4 class="font-bold mb-2">First Principles Breakdown:</h4>
<div x-html="firstPrinciples.result" class="p-4 bg-white rounded-lg border border-gray-200 prose max-w-none"></div>
<div class="mt-4">
<h4 class="font-bold mb-2">Innovative Solutions:</h4>
<div x-html="firstPrinciples.solutions" class="p-4 bg-white rounded-lg border border-purple-200 prose max-w-none"></div>
</div>
</div>
</div>
<!-- 10x Mission Generator -->
<div class="bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<h3 class="text-xl font-bold text-gray-900 mb-4">10x Mission Generator</h3>
<p class="text-gray-600 mb-6">
Create a world-changing mission statement that inspires your team and customers.
</p>
<div class="space-y-4 mb-6">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Market/Industry</label>
<input x-model="missionGenerator.market" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. renewable energy, education">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Core Problem</label>
<input x-model="missionGenerator.problem" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. high costs, lack of access">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Your Values</label>
<input x-model="missionGenerator.values" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. sustainability, equality">
</div>
</div>
<button @click="generateMission()" class="bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!missionGenerator.loading">Generate Mission</span>
<span x-show="missionGenerator.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Creating...
</span>
</button>
<div x-show="missionGenerator.result" class="mt-6">
<div class="p-6 bg-gradient-to-r from-purple-500 to-indigo-600 rounded-lg text-white">
<div class="text-xl font-bold mb-2">Your 10x Mission:</div>
<div x-text="missionGenerator.result" class="text-2xl italic"></div>
<div class="mt-4 text-sm opacity-80">"The kind of mission that changes industries and inspires generations"</div>
</div>
<div class="mt-4 grid grid-cols-2 gap-4">
<button @click="regenerateMission('bold')" class="bg-white border border-purple-200 hover:bg-purple-50 text-purple-600 py-2 px-4 rounded-md font-medium transition flex items-center justify-center">
<i class="fas fa-bolt mr-2"></i> More Bold
</button>
<button @click="regenerateMission('concise')" class="bg-white border border-purple-200 hover:bg-purple-50 text-purple-600 py-2 px-4 rounded-md font-medium transition flex items-center justify-center">
<i class="fas fa-scissors mr-2"></i> More Concise
</button>
</div>
</div>
</div>
</div>
<!-- Speed Audit Bot -->
<div class="mt-12 bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<h3 class="text-xl font-bold text-gray-900 mb-4">Speed Audit Bot</h3>
<p class="text-gray-600 mb-6">
Identify what's slowing you down and get actionable recommendations to move faster.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">What are you trying to launch/ship?</label>
<input x-model="speedAudit.task" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. new feature, marketing campaign">
</div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Current Timeline</label>
<input x-model="speedAudit.timeline" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. 3 months, 6 weeks">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">Main Bottlenecks (if known)</label>
<textarea x-model="speedAudit.bottlenecks" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. design approvals, technical debt"></textarea>
</div>
<button @click="runSpeedAudit()" class="mt-6 bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!speedAudit.loading">Run Speed Audit</span>
<span x-show="speedAudit.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Auditing...
</span>
</button>
</div>
<div x-show="speedAudit.result" class="p-4 bg-white rounded-lg border border-gray-200">
<h4 class="font-bold mb-2">Speed Audit Results:</h4>
<div class="mb-4">
<div class="font-medium text-gray-700 mb-1">Potential Timeline:</div>
<div x-text="speedAudit.optimizedTimeline" class="text-lg text-purple-600 font-bold"></div>
</div>
<div class="mb-4">
<div class="font-medium text-gray-700 mb-1">Key Bottlenecks:</div>
<div x-html="speedAudit.bottleneckAnalysis" class="prose max-w-none"></div>
</div>
<div>
<div class="font-medium text-gray-700 mb-1">Execution Boosters:</div>
<div x-html="speedAudit.boosters" class="prose max-w-none"></div>
</div>
</div>
</div>
</div>
<!-- Flywheel Creator -->
<div class="mt-12 bg-gray-50 rounded-xl p-6 shadow-md card-hover">
<h3 class="text-xl font-bold text-gray-900 mb-4">Flywheel Creator</h3>
<p class="text-gray-600 mb-6">
Design a compounding growth engine that builds momentum over time.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Customer Acquisition Engine</label>
<textarea x-model="flywheel.acquisition" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="How do you attract new customers?"></textarea>
</div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Retention/Engagement Engine</label>
<textarea x-model="flywheel.retention" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="How do you keep customers engaged?"></textarea>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">Monetization Engine</label>
<textarea x-model="flywheel.monetization" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="How do you generate revenue?"></textarea>
</div>
<button @click="createFlywheel()" class="mt-6 bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium transition flex items-center">
<span x-show="!flywheel.loading">Create Flywheel</span>
<span x-show="flywheel.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Designing...
</span>
</button>
</div>
<div x-show="flywheel.result" class="p-4 bg-white rounded-lg border border-gray-200">
<h4 class="font-bold mb-4">Your Growth Flywheel:</h4>
<div class="flex justify-center mb-6">
<div class="relative w-64 h-64">
<!-- Flywheel visualization -->
<div class="absolute inset-0 rounded-full border-4 border-purple-200 animate-spin" style="animation-duration: 10s;"></div>
<div class="absolute inset-4 rounded-full border-4 border-purple-300 animate-spin" style="animation-duration: 8s; animation-direction: reverse;"></div>
<div class="absolute inset-8 rounded-full border-4 border-purple-400 animate-spin" style="animation-duration: 6s;"></div>
<div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2 bg-purple-600 text-white rounded-full w-12 h-12 flex items-center justify-center">
<div class="text-xs font-bold text-center">1. <span x-text="flywheel.steps[0]"></span></div>
</div>
<div class="absolute right-0 top-1/2 transform translate-x-1/2 -translate-y-1/2 bg-purple-600 text-white rounded-full w-12 h-12 flex items-center justify-center">
<div class="text-xs font-bold text-center">2. <span x-text="flywheel.steps[1]"></span></div>
</div>
<div class="absolute bottom-0 left-1/2 transform -translate-x-1/2 translate-y-1/2 bg-purple-600 text-white rounded-full w-12 h-12 flex items-center justify-center">
<div class="text-xs font-bold text-center">3. <span x-text="flywheel.steps[2]"></span></div>
</div>
<div class="absolute left-0 top-1/2 transform -translate-x-1/2 -translate-y-1/2 bg-purple-600 text-white rounded-full w-12 h-12 flex items-center justify-center">
<div class="text-xs font-bold text-center">4. <span x-text="flywheel.steps[3]"></span></div>
</div>
</div>
</div>
<div x-html="flywheel.description" class="prose max-w-none"></div>
</div>
</div>
</div>
</div>
</section>
<!-- AI Lab Section -->
<section id="ai-lab" class="py-16 bg-purple-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">
<i class="fas fa-flask text-purple-600 mr-2"></i> AI Lab
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Hypergrowth toolkits and automation frameworks for ambitious founders
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- AI Pitch Deck Builder -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-file-powerpoint"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">AI Pitch Deck Builder</h3>
<p class="text-gray-600 mb-4">
Transform your idea into an investor-ready pitch deck structure.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Your Startup Idea</label>
<textarea x-model="pitchDeck.idea" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="Describe your business in 1-2 sentences"></textarea>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Target Investors</label>
<input x-model="pitchDeck.investors" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. Seed VCs, Angels">
</div>
<button @click="buildPitchDeck()" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!pitchDeck.loading">Build Deck</span>
<span x-show="pitchDeck.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Building...
</span>
</button>
<div x-show="pitchDeck.result" class="mt-4 p-4 bg-gray-50 rounded-lg">
<h4 class="font-bold mb-2">Pitch Deck Outline:</h4>
<div x-html="pitchDeck.result" class="prose max-w-none"></div>
<button @click="downloadPlan('Pitch Deck Outline', pitchDeck.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Outline
</button>
</div>
</div>
<!-- Custom OKR Generator -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-bullseye"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Custom OKR Generator</h3>
<p class="text-gray-600 mb-4">
Create company-wide OKRs aligned with your strategic goals.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Quarter/Timeframe</label>
<select x-model="okrs.quarter" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="Q1">Q1</option>
<option value="Q2">Q2</option>
<option value="Q3">Q3</option>
<option value="Q4">Q4</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Top 3 Goals</label>
<textarea x-model="okrs.goals" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. Increase revenue, expand to new market"></textarea>
</div>
<button @click="generateOKRs()" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!okrs.loading">Generate OKRs</span>
<span x-show="okrs.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Generating...
</span>
</button>
<div x-show="okrs.result" class="mt-4 p-4 bg-gray-50 rounded-lg">
<h4 class="font-bold mb-2">Your OKRs:</h4>
<div x-html="okrs.result" class="prose max-w-none"></div>
<button @click="downloadPlan('OKRs ' + okrs.quarter, okrs.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download OKRs
</button>
</div>
</div>
<!-- Offer Optimizer -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-tag"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Offer Optimizer</h3>
<p class="text-gray-600 mb-4">
Transform your offer using proven copywriting frameworks.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Current Offer</label>
<textarea x-model="offerOptimizer.current" rows="3" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="Describe your current offer"></textarea>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Framework</label>
<select x-model="offerOptimizer.framework" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="PAS">Problem-Agitate-Solve</option>
<option value="4Ps">4 Ps (Promise, Picture, Proof, Push)</option>
<option value="AIDA">AIDA (Attention, Interest, Desire, Action)</option>
<option value="BAB">Before-After-Bridge</option>
</select>
</div>
<button @click="optimizeOffer()" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!offerOptimizer.loading">Optimize Offer</span>
<span x-show="offerOptimizer.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Optimizing...
</span>
</button>
<div x-show="offerOptimizer.result" class="mt-4 p-4 bg-gray-50 rounded-lg">
<h4 class="font-bold mb-2">Optimized Offer (<span x-text="offerOptimizer.framework"></span>):</h4>
<div x-html="offerOptimizer.result" class="prose max-w-none"></div>
<button @click="downloadPlan('Optimized Offer', offerOptimizer.result)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Offer
</button>
</div>
</div>
<!-- AI Pricing Engine -->
<div class="bg-white rounded-xl p-6 shadow-md card-hover">
<div class="text-purple-600 text-3xl mb-4">
<i class="fas fa-dollar-sign"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">AI Pricing Engine</h3>
<p class="text-gray-600 mb-4">
Get data-driven pricing recommendations for your product.
</p>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Product Type</label>
<select x-model="pricingEngine.type" class="w-full border border-gray-300 rounded-md px-3 py-2">
<option value="saas">SaaS</option>
<option value="physical">Physical Product</option>
<option value="service">Service</option>
<option value="marketplace">Marketplace</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Target Customer</label>
<input x-model="pricingEngine.customer" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. SMBs, Enterprise">
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Current Price (if any)</label>
<input x-model="pricingEngine.current" type="text" class="w-full border border-gray-300 rounded-md px-3 py-2" placeholder="e.g. $99/month">
</div>
<button @click="generatePricing()" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md font-medium transition flex items-center justify-center">
<span x-show="!pricingEngine.loading">Generate Pricing</span>
<span x-show="pricingEngine.loading" class="flex items-center">
<i class="fas fa-spinner animate-spin mr-2"></i> Calculating...
</span>
</button>
<div x-show="pricingEngine.result" class="mt-4 p-4 bg-gray-50 rounded-lg">
<h4 class="font-bold mb-2">Pricing Recommendations:</h4>
<div x-html="pricingEngine.result" class="prose max-w-none"></div>
<div class="mt-4">
<h4 class="font-bold mb-2">Upsell Path:</h4>
<div x-html="pricingEngine.upsell" class="prose max-w-none"></div>
</div>
<button @click="downloadPlan('Pricing Strategy', pricingEngine.result + pricingEngine.upsell)" class="mt-3 text-sm text-purple-600 hover:text-purple-800 flex items-center">
<i class="fas fa-download mr-1"></i> Download Strategy
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Export Section -->
<section class="py-16 bg-gradient-to-r from-purple-600 to-indigo-700 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Download Your Billion Dollar Blueprint</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">
Compile all your growth strategies into one comprehensive document.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button @click="compileBlueprint('pdf')" class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-bold text-lg transition flex items-center justify-center">
<i class="fas fa-file-pdf mr-2"></i> Export as PDF
</button>
<button @click="compileBlueprint('json')" class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-600 px-8 py-3 rounded-lg font-bold text-lg transition flex items-center justify-center">
<i class="fas fa-code mr-2"></i> Export as JSON
</button>
<button @click="compileBlueprint('email')" class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-600 px-8 py-3 rounded-lg font-bold text-lg transition flex items-center justify-center">
<i class="fas fa-envelope mr-2"></i> Email to Me
</button>
</div>
<div class="mt-8 flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-gray-800 hover:bg-gray-700 px-6 py-2 rounded-lg font-medium text-sm transition flex items-center justify-center">
<i class="fab fa-notion mr-2"></i> Save to Notion
</button>
<button class="bg-gray-800 hover:bg-gray-700 px-6 py-2 rounded-lg font-medium text-sm transition flex items-center justify-center">
<i class="fas fa-table mr-2"></i> Save to Airtable
</button>
<button class="bg-gray-800 hover:bg-gray-700 px-6 py-2 rounded-lg font-medium text-sm transition flex items-center justify-center">
<i class="fas fa-user-tie mr-2"></i> Save to CRM
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-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>
<h3 class="text-lg font-bold mb-4">GrowthOps AI</h3>
<p class="text-gray-400">
Your AI-powered growth co-pilot combining VC frameworks, BCG strategy, and first principles thinking.
</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">VC Playbooks</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">BCG Engine</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Moonshot Planner</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">AI Lab</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Connect</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-product-hunt"></i></a>
</div>
<div class="mt-4">
<button @click="openApiModal = true" class="text-sm text-purple-400 hover:text-purple-300 flex items-center">
<i class="fas fa-key mr-1"></i> Manage API Key
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 GrowthOps AI. All rights reserved.</p>
</div>
</div>
</footer>
<script>
|