Spaces:
Running
Running
File size: 21,770 Bytes
1439795 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analytics for Managers - AI Companions</title>
<meta name="description" content="AI-powered learning companions for the Analytics for Managers textbook. Develop disciplined analytical thinking with guided exercises and hands-on practice.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #1a365d;
--primary-light: #2c5282;
--secondary: #38a169;
--accent: #ed8936;
--background: #f7fafc;
--card-bg: #ffffff;
--text: #2d3748;
--text-light: #718096;
--border: #e2e8f0;
--companion-color: #3182ce;
--sandbox-color: #38a169;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background-color: var(--background);
color: var(--text);
line-height: 1.6;
}
/* Navigation */
nav {
background: var(--primary);
padding: 1rem 2rem;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
color: white;
font-weight: 700;
font-size: 1.25rem;
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: rgba(255,255,255,0.9);
text-decoration: none;
font-size: 0.95rem;
transition: color 0.2s;
}
.nav-links a:hover {
color: white;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
padding: 8rem 2rem 5rem;
text-align: center;
}
.hero h1 {
font-size: 2.75rem;
font-weight: 700;
margin-bottom: 1rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.hero .subtitle {
font-size: 1.25rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto 2rem;
}
.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
/* Main Content */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Companions Section */
.companions-section {
padding: 5rem 0;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
font-size: 2rem;
color: var(--primary);
margin-bottom: 1rem;
}
.section-header p {
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}
.companions-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.companion-card {
background: var(--card-bg);
border-radius: 16px;
padding: 2.5rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: 1px solid var(--border);
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.companion-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.companion-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
}
.companion-card.reasoning::before {
background: var(--companion-color);
}
.companion-card.sandbox::before {
background: var(--sandbox-color);
}
.card-icon {
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
font-size: 1.75rem;
}
.companion-card.reasoning .card-icon {
background: rgba(49, 130, 206, 0.1);
}
.companion-card.sandbox .card-icon {
background: rgba(56, 161, 105, 0.1);
}
.companion-card h3 {
font-size: 1.5rem;
margin-bottom: 0.75rem;
color: var(--primary);
}
.companion-card .tagline {
color: var(--text-light);
font-size: 0.95rem;
margin-bottom: 1.5rem;
}
.feature-list {
list-style: none;
margin-bottom: 2rem;
}
.feature-list li {
padding: 0.5rem 0;
padding-left: 1.75rem;
position: relative;
font-size: 0.95rem;
}
.feature-list li::before {
content: "β";
position: absolute;
left: 0;
color: var(--secondary);
font-weight: bold;
}
.best-for {
background: #f7fafc;
border-radius: 8px;
padding: 1rem;
margin-bottom: 1.5rem;
}
.best-for-label {
font-size: 0.8rem;
font-weight: 600;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.5rem;
}
.best-for p {
font-size: 0.95rem;
margin: 0;
}
.cta-button {
display: inline-block;
width: 100%;
padding: 1rem 2rem;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
text-align: center;
transition: all 0.2s;
font-size: 1rem;
}
.companion-card.reasoning .cta-button {
background: var(--companion-color);
color: white;
}
.companion-card.reasoning .cta-button:hover {
background: #2c5aa0;
}
.companion-card.sandbox .cta-button {
background: var(--sandbox-color);
color: white;
}
.companion-card.sandbox .cta-button:hover {
background: #2f8a5a;
}
/* How It Works Section */
.how-it-works {
background: white;
padding: 5rem 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.step-card {
text-align: center;
padding: 1.5rem;
}
.step-number {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.25rem;
margin: 0 auto 1.25rem;
}
.step-card h3 {
font-size: 1.1rem;
margin-bottom: 0.75rem;
color: var(--primary);
}
.step-card p {
color: var(--text-light);
font-size: 0.95rem;
}
/* Resources Section */
.resources {
padding: 5rem 0;
}
.resources-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 2rem;
}
.resource-card {
background: white;
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
text-decoration: none;
color: var(--text);
transition: all 0.2s;
}
.resource-card:hover {
border-color: var(--primary);
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.resource-card h4 {
font-size: 1rem;
margin-bottom: 0.5rem;
color: var(--primary);
}
.resource-card p {
font-size: 0.9rem;
color: var(--text-light);
margin: 0;
}
/* Comparison Section */
.comparison {
background: white;
padding: 5rem 0;
border-top: 1px solid var(--border);
}
.comparison-table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.comparison-table th,
.comparison-table td {
padding: 1rem 1.5rem;
text-align: left;
border-bottom: 1px solid var(--border);
}
.comparison-table th {
background: var(--primary);
color: white;
font-weight: 600;
}
.comparison-table th:nth-child(2) {
background: var(--companion-color);
}
.comparison-table th:nth-child(3) {
background: var(--sandbox-color);
}
.comparison-table tr:last-child td {
border-bottom: none;
}
.comparison-table tr:hover {
background: #f7fafc;
}
/* Disclaimer Section */
.disclaimer {
background: #fffbeb;
padding: 3rem 0;
border-top: 1px solid #fbbf24;
}
.disclaimer-box {
background: white;
border: 1px solid #fbbf24;
border-left: 4px solid #f59e0b;
border-radius: 8px;
padding: 1.5rem 2rem;
}
.disclaimer-box h4 {
color: #b45309;
margin: 0 0 1rem 0;
font-size: 1.1rem;
}
.disclaimer-box ul {
margin: 0;
padding-left: 1.25rem;
}
.disclaimer-box li {
margin: 0.75rem 0;
font-size: 0.9rem;
color: #78350f;
line-height: 1.5;
}
.disclaimer-box li strong {
color: #92400e;
}
/* Footer */
footer {
background: var(--primary);
color: white;
padding: 3rem 2rem;
text-align: center;
}
footer p {
opacity: 0.8;
font-size: 0.9rem;
}
footer a {
color: white;
text-decoration: underline;
}
/* Coming Soon Badge */
.coming-soon {
display: inline-block;
background: var(--accent);
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 0.25rem 0.75rem;
border-radius: 50px;
margin-left: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
/* Responsive */
@media (max-width: 900px) {
.companions-grid,
.steps-grid,
.resources-grid {
grid-template-columns: 1fr;
}
.hero h1 {
font-size: 2rem;
}
.nav-links {
display: none;
}
}
@media (max-width: 600px) {
.hero {
padding: 6rem 1rem 3rem;
}
.companion-card {
padding: 1.5rem;
}
.comparison-table {
font-size: 0.85rem;
}
.comparison-table th,
.comparison-table td {
padding: 0.75rem;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-container">
<a href="#" class="logo">Analytics for Managers</a>
<div class="nav-links">
<a href="#companions">AI Companions</a>
<a href="#how-it-works">How It Works</a>
<a href="#comparison">Compare</a>
<a href="#resources">Resources</a>
</div>
</div>
</nav>
<section class="hero">
<div class="container">
<div class="hero-badge">AI-Powered Learning</div>
<h1>Build Analytical Judgment, Not Just Technical Skills</h1>
<p class="subtitle">AI companions designed to develop disciplined analytical thinking as you work through the textbook.</p>
</div>
</section>
<section id="companions" class="companions-section">
<div class="container">
<div class="section-header">
<h2>Choose Your Companion</h2>
<p>Two AI tools designed for different stages of your learning journey</p>
</div>
<div class="companions-grid">
<!-- Reasoning Companion Card -->
<div class="companion-card reasoning">
<div class="card-icon">π</div>
<h3>Analytics Reasoning Companion</h3>
<p class="tagline">Learn disciplined thinking with guided exercises</p>
<ul class="feature-list">
<li>Guided 7-stage analytical workflow</li>
<li>Works with book datasets only</li>
<li>Helps you test and strengthen your conclusions</li>
<li>Develops judgment through Socratic questioning</li>
<li>Example mode (learning) + Exercise mode (practice)</li>
</ul>
<div class="best-for">
<div class="best-for-label">Best For</div>
<p>Students and learners working through the textbook chapters who want to develop rigorous analytical thinking habits.</p>
</div>
<!-- UPDATE THIS LINK -->
<a href="https://chatgpt.com/g/g-6952028f3a088191ada3f9a6c98061d1-analytics-reasoning-companion" class="cta-button" target="_blank">
Launch Reasoning Companion β
</a>
</div>
<!-- Sandbox Card -->
<div class="companion-card sandbox">
<div class="card-icon">π¬</div>
<h3>Analytics Modeling Sandbox</h3>
<p class="tagline">Apply techniques to your own data</p>
<ul class="feature-list">
<li>Upload and analyze your own datasets</li>
<li>Flexible, practitioner-focused workflow</li>
<li>Generates code and model outputs</li>
<li>Maintains disciplined interpretation guidance</li>
<li>Export results and visualizations</li>
</ul>
<div class="best-for">
<div class="best-for-label">Best For</div>
<p>Practitioners and professionals who have completed the book and want to apply techniques to real business problems.</p>
</div>
<!-- UPDATE THIS LINK -->
<a href="https://chatgpt.com/g/g-69520c0db9a081919c68a9e17ab5588c-analytics-modeling-sandbox" class="cta-button" target="_blank">
Launch Modeling Sandbox β
</a>
</div>
</div>
</div>
</section>
<section id="how-it-works" class="how-it-works">
<div class="container">
<div class="section-header">
<h2>How It Works</h2>
<p>A structured approach to building analytical judgment</p>
</div>
<div class="steps-grid">
<div class="step-card">
<div class="step-number">1</div>
<h3>Read the Chapter</h3>
<p>Start with the textbook to understand concepts, techniques, and interpretation principles.</p>
</div>
<div class="step-card">
<div class="step-number">2</div>
<h3>Work the Example</h3>
<p>Use the Reasoning Companion in Example Mode for a guided walkthrough with detailed explanations.</p>
</div>
<div class="step-card">
<div class="step-number">3</div>
<h3>Complete the Exercise</h3>
<p>Switch to Exercise Mode to practice independently. The companion challenges your reasoning with Socratic questions.</p>
</div>
</div>
</div>
</section>
<section id="comparison" class="comparison">
<div class="container">
<div class="section-header">
<h2>Quick Comparison</h2>
<p>Choose the right tool for your needs</p>
</div>
<table class="comparison-table">
<thead>
<tr>
<th>Feature</th>
<th>Reasoning Companion</th>
<th>Modeling Sandbox</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Primary Purpose</strong></td>
<td>Learn analytical thinking</td>
<td>Apply to real problems</td>
</tr>
<tr>
<td><strong>Data</strong></td>
<td>Book datasets only</td>
<td>Your own uploads</td>
</tr>
<tr>
<td><strong>Workflow</strong></td>
<td>Strict 7-stage structure</td>
<td>Flexible, user-driven</td>
</tr>
<tr>
<td><strong>Code Generation</strong></td>
<td>No (conceptual focus)</td>
<td>Yes (Python)</td>
</tr>
<tr>
<td><strong>Guidance Style</strong></td>
<td>Socratic questioning</td>
<td>Direct assistance</td>
</tr>
<tr>
<td><strong>Best For</strong></td>
<td>Students learning the material</td>
<td>Practitioners applying it</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="resources" class="resources">
<div class="container">
<div class="section-header">
<h2>Resources</h2>
<p>Guides and documentation to help you get started</p>
</div>
<div class="resources-grid">
<a href="Analytics_Reasoning_Companion_User_Guide.html" class="resource-card">
<h4>User Guide</h4>
<p>Complete guide to using the Reasoning Companion effectively.</p>
</a>
<a href="Examples_vs_Exercises_Guide.html" class="resource-card">
<h4>Examples vs. Exercises</h4>
<p>Understand the two learning modes and when to use each.</p>
</a>
<a href="#" class="resource-card">
<h4>FAQ</h4>
<p>Common questions about the AI companions answered.</p>
</a>
</div>
</div>
</section>
<section class="disclaimer">
<div class="container">
<div class="disclaimer-box">
<h4>Important Notice</h4>
<ul>
<li><strong>Platform Access:</strong> These AI companions are hosted on OpenAI's ChatGPT platform. Access is subject to OpenAI's current policies and terms of service.</li>
<li><strong>Availability:</strong> While these tools are currently accessible to ChatGPT users, we cannot guarantee their continued availability to free-tier users in the future. OpenAI may modify access policies at any time.</li>
<li><strong>Usage Limits:</strong> Usage limits for free-tier accounts are controlled by OpenAI and may be restricted. For uninterrupted access, consider a ChatGPT Plus subscription.</li>
<li><strong>No Warranty:</strong> These tools are provided for educational purposes. We make no warranties regarding availability, performance, or fitness for any particular purpose.</li>
</ul>
</div>
</div>
</section>
<footer>
<div class="container">
<p><strong>Analytics for Managers</strong></p>
<p style="margin-top: 0.5rem;">Building analytical judgment through disciplined thinking.</p>
<p style="margin-top: 1.5rem; font-size: 0.85rem;">
Questions? Contact us at <a href="mailto:support@example.com">support@example.com</a>
</p>
</div>
</footer>
</body>
</html>
|