Spaces:
Running
Running
File size: 27,530 Bytes
212228b |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ACLIS: The Operating System for Clinical AI | HawkFranklin Research</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lexend:wght@500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
color: #1e293b;
}
h1, h2, h3, h4 {
font-family: 'Lexend', sans-serif;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.slide {
min-height: 100vh;
padding: 4rem 2rem;
position: relative;
overflow: hidden;
}
.card {
background: white;
border-radius: 1rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.nav-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #e2e8f0;
transition: all 0.3s;
cursor: pointer;
}
.nav-dot.active {
background-color: #3b82f6;
transform: scale(1.25);
}
.bg-grid {
background-image:
linear-gradient(to right, #f1f5f9 1px, transparent 1px),
linear-gradient(to bottom, #f1f5f9 1px, transparent 1px);
background-size: 40px 40px;
}
.pillar-card {
border-top: 4px solid;
border-color: #3b82f6;
}
.pillar-card:hover {
border-color: #2563eb;
}
.annotation {
position: absolute;
width: 16px;
height: 16px;
border-radius: 50%;
background-color: #ef4444;
border: 2px solid white;
}
.doctor-protocol {
border-left: 4px solid #3b82f6;
}
</style>
</head>
<body class="antialiased">
<!-- Navigation Dots -->
<div id="nav-dots" class="fixed right-8 top-1/2 transform -translate-y-1/2 z-50 flex flex-col space-y-3">
<!-- Dots will be added here by JavaScript -->
</div>
<!-- Slide 1: Title Slide -->
<section id="slide-1" class="slide bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center">
<div class="max-w-5xl text-center px-4">
<div class="inline-block mb-6 px-6 py-3 bg-white rounded-full shadow-sm">
<span class="font-semibold text-blue-600">HawkFranklin Research</span>
</div>
<h1 class="text-5xl md:text-7xl font-bold tracking-tight mb-6 text-gray-900">
ACLIS: <span class="gradient-text">Adaptive Clinical Intelligent System</span>
</h1>
<p class="text-xl md:text-2xl text-gray-700 mb-10 max-w-3xl mx-auto">
The operating system that unifies AI-enabled devices, foundation models and physician expertise into one adaptive clinical brain
</p>
<a href="#slide-2" class="inline-block bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105 shadow-lg">
Explore the Vision <i class="fas fa-arrow-down ml-2"></i>
</a>
</div>
</section>
<!-- Slide 2: The Challenge -->
<section id="slide-2" class="slide bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">
The AI Revolution in Healthcare
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
An exponential surge of AI tools is coming - how do we prevent chaos?
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Problem Card 1 -->
<div class="card p-6">
<div class="flex items-center mb-4">
<div class="bg-red-100 p-3 rounded-full mr-4">
<i class="fas fa-puzzle-piece text-red-500 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Fragmented Ecosystem</h3>
</div>
<p class="text-gray-600">
Hospitals will face dozens of incompatible AI tools, devices and models - each with separate interfaces and workflows.
</p>
</div>
<!-- Problem Card 2 -->
<div class="card p-6">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 p-3 rounded-full mr-4">
<i class="fas fa-user-graduate text-yellow-500 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Training Overload</h3>
</div>
<p class="text-gray-600">
Constant retraining needed as new AI tools are adopted. Doctors can't relearn systems every 6 months.
</p>
</div>
<!-- Problem Card 3 -->
<div class="card p-6">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-brain text-purple-500 text-xl"></i>
</div>
<h3 class="font-bold text-lg">Lost Physician Wisdom</h3>
</div>
<p class="text-gray-600">
Doctors' experience and intuition isn't captured. AI pushes generic solutions that ignore local expertise.
</p>
</div>
</div>
</div>
</section>
<!-- Slide 3: Solution Overview -->
<section id="slide-3" class="slide bg-blue-50">
<div class="max-w-6xl mx-auto px-4 flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
The ACLIS Solution: <span class="gradient-text">An Operating System for Clinical AI</span>
</h2>
<p class="text-lg text-gray-700 mb-8">
ACLIS isn't another AI tool - it's the platform that brings order to the chaos through two revolutionary innovations:
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-plug text-blue-600 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg text-gray-800">Universal Integration Hub</h4>
<p class="text-gray-600">
Manage all AI tools, devices and models through one unified interface
</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i class="fas fa-user-md text-green-600 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg text-gray-800">Doctor's AI Protocol (DAP)</h4>
<p class="text-gray-600">
Learns each physician's unique context and preferences to personalize AI
</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 card p-8">
<div class="relative bg-gray-800 rounded-lg overflow-hidden" style="height: 400px;">
<div class="absolute inset-0 flex flex-col">
<!-- Hospital Background -->
<div class="flex-1 bg-blue-900"></div>
<div class="h-16 bg-blue-800"></div>
</div>
<!-- Connected Devices -->
<div class="absolute top-8 left-8">
<div class="bg-white rounded-lg p-3 shadow-sm">
<i class="fas fa-robot text-blue-600"></i>
</div>
</div>
<div class="absolute top-8 right-8">
<div class="bg-white rounded-lg p-3 shadow-sm">
<i class="fas fa-microscope text-blue-600"></i>
</div>
</div>
<div class="absolute bottom-24 left-16">
<div class="bg-white rounded-lg p-3 shadow-sm">
<i class="fas fa-x-ray text-blue-600"></i>
</div>
</div>
<div class="absolute bottom-24 right-16">
<div class="bg-white rounded-lg p-3 shadow-sm">
<i class="fas fa-dna text-blue-600"></i>
</div>
</div>
<!-- ACLIS Hub -->
<div class="absolute inset-0 flex items-center justify-center">
<div class="bg-gradient-to-r from-blue-600 to-blue-500 text-white rounded-full p-6 shadow-xl">
<div class="text-center">
<i class="fas fa-cogs text-3xl mb-2"></i>
<p class="font-bold">ACLIS</p>
</div>
</div>
</div>
<!-- Connections -->
<div class="absolute top-0 left-0 w-full h-full">
<svg class="w-full h-full" xmlns="http://www.w3.org/2000/svg">
<line x1="20%" y1="15%" x2="50%" y2="50%" stroke="#93c5fd" stroke-width="2" stroke-dasharray="5,5"/>
<line x1="80%" y1="15%" x2="50%" y2="50%" stroke="#93c5fd" stroke-width="2" stroke-dasharray="5,5"/>
<line x1="20%" y1="70%" x2="50%" y2="50%" stroke="#93c5fd" stroke-width="2" stroke-dasharray="5,5"/>
<line x1="80%" y1="70%" x2="50%" y2="50%" stroke="#93c5fd" stroke-width="2" stroke-dasharray="5,5"/>
</svg>
</div>
</div>
</div>
</div>
</section>
<!-- Slide 4: Pillar 1 - Integration -->
<section id="slide-4" class="slide bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<span class="text-blue-600 font-semibold">THE FIRST PILLAR</span>
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mt-2">
Universal Integration Platform
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
One interface to manage all your clinical AI tools and devices
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="card p-6 border-t-4 border-blue-500">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-plug text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">Plug-and-Play Connectivity</h3>
</div>
<p class="text-gray-600">
New AI devices connect seamlessly through standardized interfaces. Their native UIs remain accessible while integrating with the ACLIS ecosystem.
</p>
</div>
<div class="card p-6 border-t-4 border-blue-500">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-desktop text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">Unified Dashboard</h3>
</div>
<p class="text-gray-600">
A single clinical cockpit gives access to all connected tools without juggling multiple logins or interfaces.
</p>
</div>
<div class="card p-6 border-t-4 border-blue-500">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-shield-alt text-blue-600"></i>
</div>
<h3 class="font-bold text-lg">Centralized Management</h3>
</div>
<p class="text-gray-600">
Streamline security, compliance and deployment for all AI assets from one control plane.
</p>
</div>
</div>
<div class="mt-16 card p-8 bg-gray-50">
<div class="text-center mb-6">
<h3 class="font-bold text-lg text-gray-800">ACLIS Integration Gateway</h3>
<p class="text-sm text-gray-600">Supporting all major clinical AI formats</p>
</div>
<div class="flex flex-wrap justify-center gap-4">
<div class="bg-white rounded-lg p-4 w-24 h-24 flex flex-col items-center justify-center shadow-sm">
<i class="fas fa-file-medical-alt text-3xl text-blue-600 mb-2"></i>
<span class="text-xs font-medium">EHR</span>
</div>
<div class="bg-white rounded-lg p-4 w-24 h-24 flex flex-col items-center justify-center shadow-sm">
<i class="fas fa-file-alt text-3xl text-blue-600 mb-2"></i>
<span class="text-xs font-medium">PDF/OCR</span>
</div>
<div class="bg-white rounded-lg p-4 w-24 h-24 flex flex-col items-center justify-center shadow-sm">
<i class="fas fa-procedures text-3xl text-blue-600 mb-2"></i>
<span class="text-xs font-medium">DICOM</span>
</div>
<div class="bg-white rounded-lg p-4 w-24 h-24 flex flex-col items-center justify-center shadow-sm">
<i class="fas fa-file-csv text-3xl text-blue-600 mb-2"></i>
<span class="text-xs font-medium">CSV/TSV</span>
</div>
<div class="bg-white rounded-lg p-4 w-24 h-24 flex flex-col items-center justify-center shadow-sm">
<i class="fas fa-flask text-3xl text-blue-600 mb-2"></i>
<span class="text-xs font-medium">Lab Data</span>
</div>
<div class="bg-white rounded-lg p-4 w-24 h-24 flex flex-col items-center justify-center shadow-sm">
<i class="fas fa-genetics text-3xl text-blue-600 mb-2"></i>
<span class="text-xs font-medium">Genomics</span>
</div>
</div>
</div>
</div>
</section>
<!-- Slide 5: Pillar 2 - Doctor's AI Protocol -->
<section id="slide-5" class="slide bg-gray-50">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<span class="text-green-600 font-semibold">THE SECOND PILLAR</span>
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mt-2">
Doctor's AI Protocol (DAP)
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
The adaptive core that learns and aligns with each physician's unique context
</p>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div class="card p-8 doctor-protocol">
<div class="relative h-96">
<!-- Doctor Profile -->
<div class="absolute top-0 left-0">
<div class="flex items-center">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center">
<i class="fas fa-user-md text-blue-600 text-xl"></i>
</div>
<div class="ml-4">
<h4 class="font-bold">Dr. Sarah Chen</h4>
<p class="text-sm text-gray-600">Cardiology</p>
</div>
</div>
</div>
<!-- Protocol Notebook -->
<div class="absolute top-32 left-0 right-0 bg-white rounded-lg shadow-sm p-4">
<h4 class="font-bold text-gray-800 mb-3">Personalized Protocol</h4>
<div class="space-y-3">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-lg mr-3">
<i class="fas fa-sliders-h text-blue-600"></i>
</div>
<div>
<p class="text-sm text-gray-800"><strong>Confidence Threshold:</strong> Require >92% confidence for ECG interpretation alerts</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-lg mr-3">
<i class="fas fa-heartbeat text-green-600"></i>
</div>
<div>
<p class="text-sm text-gray-800"><strong>Clinical Heuristic:</strong> South Asian patients show higher CVD risk at lower LDL levels</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-lg mr-3">
<i class="fas fa-notes-medical text-purple-600"></i>
</div>
<div>
<p class="text-sm text-gray-800"><strong>Note:</strong> Prefer GE ultrasound device with these settings for obese patients</p>
</div>
</div>
</div>
</div>
<!-- AI Model Fine-Tuning -->
<div class="absolute bottom-0 left-0 right-0 bg-blue-50 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="text-sm font-medium text-blue-800">Model Alignment Status</span>
<span class="text-xs bg-blue-600 text-white px-2 py-1 rounded-full">85% Complete</span>
</div>
<div class="w-full bg-blue-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-2xl font-bold text-gray-800 mb-6">How the Doctor's AI Protocol Works</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-user-edit text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-2 text-gray-800">Captures Physician Context</h4>
<p class="text-gray-600">
Learns each doctor's preferences, trusted tools, clinical heuristics, and local population norms.
</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i class="fas fa-project-diagram text-green-600"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-2 text-gray-800">Fine-Tunes Foundation Models</h4>
<p class="text-gray-600">
Uses an on-premise Copilot Trainer to align models with hospital-specific data without exposing sensitive information.
</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-3 rounded-lg mr-4">
<i class="fas fa-desktop text-purple-600"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-2 text-gray-800">Generates Dynamic UIs</h4>
<p class="text-gray-600">
Automatically builds personalized dashboards based on specialty, case load, and personal preferences.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Slide 6: ACLIS in Action -->
<section id="slide-6" class="slide bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">
ACLIS: <span class="gradient-text">A Day in the Life</span>
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
How ACLIS transforms clinical workflows with adaptive intelligence
</p>
</div>
<div class="grid lg:grid-cols-2 gap-12">
<!-- Physician Dashboard -->
<div class="card p-6">
<div class="flex justify-between items-center mb-6">
<h3 class="font-bold text-xl flex items-center">
<i class="fas fa-user-md text-blue-600 mr-2"></i>
Physician Dashboard
</h3>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs">
Dynamic Interface
</span>
</div>
<div class="relative bg-gray-50 rounded-xl p-4 h-96 mb-6">
<!-- Doctor Info -->
<div class="absolute top-4 left-4 flex items-center">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
<i class="fas fa-user-md text-blue-600"></i>
</div>
<div class="ml-3">
<h4 class="font-medium">Dr. Sarah Chen</h4>
<span class="text-xs text-gray-500">Cardiology</span>
</div>
</div>
<!-- Patient Summary -->
<div class="absolute top-20 left-4 right-4 bg-white rounded-lg p-4 shadow-sm">
<h5 class="font-bold text-sm mb-2">Patient Overview</h5>
<p class="text-xs text-gray-600">John D., 68M - History of CAD, presenting with chest pain</p>
</div>
<!-- Modules -->
<div class="absolute bottom-4 left-4 right-4 grid grid-cols-3 gap-2">
<div class="bg-blue-50 rounded-lg p-2 text-center">
<i class="fas fa-heartbeat text-blue-600 mb-1"></i>
<span class="text-xs">Cardiac Risk</span>
</div>
<div class="bg-blue-50 rounded-lg p-2 text-center">
<i class="fas fa-pills text-blue-600 mb-1"></i>
<span class="text-xs">Meds Review</span>
</div>
<div class="bg-blue-50 rounded-lg p-2 text-center">
<i class="fas fa-x-ray text-blue-600 mb-1"></i>
<span class="text-xs">Imaging</span>
</div>
</div>
<!-- AI Suggestions -->
<div class="absolute bottom-4 right-4 bg-green-50 rounded-lg p-3 max-w-xs">
<h5 class="font-bold text-sm text-green-800 mb-1">ACLIS Suggests</h5>
<p class="text-xs text-green-700">Consider cardiac catheterization based on patient history and latest guidelines</p>
</div>
</div>
<p class="text-sm text-gray-600 text-center">
The dashboard dynamically adjusts based on specialty, patient condition, and doctor preferences
</p>
</div>
<!-- Benefits List -->
<div class="card p-6">
<h3 class="font-bold text-xl mb-6">Transformative Benefits</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-clock text-blue-600"></i>
</div>
<div>
<h4 class="font-medium text-gray-800 mb-1">40% Time Savings</h4>
<p class="text-sm text-gray-600">
Automates routine tasks and consolidated workflows save clinicians valuable time
</
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=VatsalPatel18/hoal" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |