Spaces:
Running
Running
File size: 25,806 Bytes
ea9fb31 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preserflo™ MicroShunt - Advanced Glaucoma Treatment</title>
<!-- Reveal.js -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/reveal.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/theme/white.min.css">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.reveal section {
height: 100%;
}
.reveal h1 {
font-size: 2.5em;
color: #1a365d;
}
.reveal h2 {
font-size: 1.8em;
color: #2c5282;
}
.reveal p {
font-size: 1.2em;
line-height: 1.6;
}
.reveal ul {
list-style-type: none;
margin-left: 1em;
}
.reveal li {
margin: 0.8em 0;
display: flex;
align-items: center;
}
.reveal li i {
margin-right: 0.5em;
color: #2c5282;
}
.custom-bg {
background-color: rgba(255, 255, 255, 0.95);
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.medical-icon {
font-size: 1.2em;
color: #2c5282;
}
.img-container {
position: relative;
overflow: hidden;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
aspect-ratio: 4/3;
background: white;
}
.img-container img {
width: 100%;
height: 100%;
object-fit: contain;
padding: 1rem;
}
.chart-container {
background: white;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 1rem 0;
}
.comparison-chart {
display: flex;
flex-direction: column;
gap: 1rem;
}
.bar {
background: linear-gradient(to right, #3b82f6, #60a5fa);
height: 2rem;
border-radius: 0.25rem;
transition: width 0.3s ease;
position: relative;
}
.bar::after {
content: attr(data-value);
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
color: white;
font-weight: bold;
}
.stat-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.stat-card {
background: white;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.2s ease;
}
.stat-card:hover {
transform: translateY(-2px);
}
.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: #2563eb;
margin-bottom: 0.5rem;
}
.chart-title {
font-size: 1.2rem;
font-weight: 600;
color: #1e40af;
margin-bottom: 1rem;
text-align: center;
}
.line-chart {
width: 100%;
height: 200px;
margin-top: 1rem;
}
.axis-label {
font-size: 0.875rem;
fill: #64748b;
}
.data-point {
fill: #3b82f6;
r: 4;
}
.data-line {
stroke: #3b82f6;
stroke-width: 2;
fill: none;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Title Slide -->
<section class="bg-gradient-to-r from-blue-100 to-blue-200">
<div class="custom-bg">
<i class="fas fa-eye medical-icon text-5xl mb-6"></i>
<h1 class="text-4xl font-bold mb-6">Preserflo™ MicroShunt</h1>
<h2 class="text-2xl text-gray-700 mb-4">Advanced Glaucoma Treatment Solution</h2>
<p class="text-lg text-gray-600">A Revolutionary Approach to IOP Management</p>
</div>
</section>
<!-- What is Glaucoma? -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Understanding Glaucoma</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left">
<li><i class="fas fa-exclamation-triangle"></i>Progressive optic nerve damage</li>
<li><i class="fas fa-arrow-up"></i>Often associated with elevated intraocular pressure (IOP)</li>
<li><i class="fas fa-eye-slash"></i>Leading cause of irreversible blindness worldwide</li>
<li><i class="fas fa-users"></i>Affects over 80 million people globally</li>
</ul>
<div class="chart-container mt-4">
<div class="chart-title">Global Impact of Glaucoma</div>
<div class="stat-grid">
<div class="stat-card">
<div class="stat-number">80M+</div>
<div>Global Cases</div>
</div>
<div class="stat-card">
<div class="stat-number">2nd</div>
<div>Leading Cause of Blindness</div>
</div>
</div>
</div>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Eye_diagram-en.svg/1280px-Eye_diagram-en.svg.png" alt="Eye Anatomy Diagram" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- What is Preserflo? -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">The Preserflo™ MicroShunt</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left mb-4">
<li><i class="fas fa-microscope"></i>Ultra-stable, biocompatible SIBS material</li>
<li><i class="fas fa-ruler-combined"></i>Dimensions: 8.5mm long, 350μm external diameter</li>
<li><i class="fas fa-lock"></i>Planar fins prevent rotation and migration</li>
<li><i class="fas fa-drafting-compass"></i>Precisely engineered internal lumen (70μm)</li>
</ul>
<div class="chart-container">
<div class="chart-title">Device Specifications</div>
<svg width="100%" height="160" class="device-diagram">
<defs>
<linearGradient id="deviceGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#3b82f6;stop-opacity:1" />
<stop offset="100%" style="stop-color:#60a5fa;stop-opacity:1" />
</linearGradient>
</defs>
<rect x="10%" y="40" width="80%" height="40" fill="url(#deviceGradient)" rx="20"/>
<text x="50%" y="65" text-anchor="middle" fill="white" font-weight="bold">8.5mm length</text>
<line x1="10%" y1="100" x2="90%" y2="100" stroke="#2563eb" stroke-width="2"/>
<text x="50%" y="115" text-anchor="middle" fill="#2563eb">350μm external diameter</text>
<circle cx="25%" cy="60" r="5" fill="#fff"/>
<circle cx="75%" cy="60" r="5" fill="#fff"/>
<text x="50%" y="140" text-anchor="middle" fill="#64748b" font-size="12">Internal lumen: 70μm</text>
</svg>
</div>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Glaucoma_drainage_device.jpg/1280px-Glaucoma_drainage_device.jpg" alt="Medical Device" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- How it Works -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Mechanism of Action</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left mb-4">
<li><i class="fas fa-route"></i>Creates controlled aqueous outflow pathway</li>
<li><i class="fas fa-exchange-alt"></i>Diverts fluid from anterior chamber to subconjunctival space</li>
<li><i class="fas fa-filter"></i>Forms a posterior filtration bleb</li>
<li><i class="fas fa-cogs"></i>Maintains optimal IOP through precise engineering</li>
</ul>
<div class="chart-container">
<div class="chart-title">Aqueous Flow Pathway</div>
<svg width="100%" height="180">
<defs>
<marker id="arrowhead" markerWidth="10" markerHeight="7" refX="9" refY="3.5" orient="auto">
<polygon points="0 0, 10 3.5, 0 7" fill="#3b82f6"/>
</marker>
<linearGradient id="flowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#3b82f6;stop-opacity:0.2" />
<stop offset="100%" style="stop-color:#60a5fa;stop-opacity:0.2" />
</linearGradient>
</defs>
<rect x="10%" y="20" width="80%" height="140" fill="url(#flowGradient)" rx="10"/>
<path d="M50,90 Q150,40 250,90" stroke="#3b82f6" stroke-width="3" fill="none" marker-end="url(#arrowhead)"/>
<circle cx="50" cy="90" r="8" fill="#3b82f6"/>
<circle cx="250" cy="90" r="8" fill="#60a5fa"/>
<text x="50" y="120" text-anchor="middle" fill="#2563eb" font-weight="bold">Anterior Chamber</text>
<text x="250" y="120" text-anchor="middle" fill="#2563eb" font-weight="bold">Subconjunctival Space</text>
<text x="150" y="40" text-anchor="middle" fill="#64748b">Controlled Flow</text>
</svg>
</div>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Glaucoma_Types.png/1280px-Glaucoma_Types.png" alt="Glaucoma Mechanism" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- Indications -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Clinical Indications</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left">
<li><i class="fas fa-clipboard-check"></i>Primary Open-Angle Glaucoma (POAG)</li>
<li><i class="fas fa-chart-line"></i>Uncontrolled IOP despite maximum medical therapy</li>
<li><i class="fas fa-history"></i>Failed previous glaucoma surgeries</li>
<li><i class="fas fa-allergies"></i>Patients intolerant to medication</li>
</ul>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://images.unsplash.com/photo-1576091160291-31957ab2724d?auto=format&fit=crop&w=800" alt="Patient Consultation" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- The Procedure -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Surgical Procedure</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left">
<li><i class="fas fa-hospital-user"></i>Outpatient procedure under local anesthesia</li>
<li><i class="fas fa-vial"></i>MMC application for bleb modulation</li>
<li><i class="fas fa-crosshairs"></i>Precise placement in anterior chamber</li>
<li><i class="fas fa-hand-holding-medical"></i>Minimal tissue disruption</li>
</ul>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://images.unsplash.com/photo-1576091160702-a1607572684d?auto=format&fit=crop&w=800" alt="Surgical Environment" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- Benefits -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Clinical Benefits</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left mb-4">
<li><i class="fas fa-chart-bar"></i>Significant and sustained IOP reduction</li>
<li><i class="fas fa-pills"></i>Reduced dependency on medications</li>
<li><i class="fas fa-check-circle"></i>Standardized surgical technique</li>
<li><i class="fas fa-running"></i>Faster recovery compared to traditional surgery</li>
</ul>
<div class="chart-container">
<div class="chart-title">IOP Reduction Results</div>
<div class="comparison-chart">
<div>
<div class="flex justify-between mb-1">
<span class="font-semibold">Baseline IOP</span>
<span class="font-semibold">24.8 mmHg</span>
</div>
<div class="bar" style="width: 100%" data-value="24.8 mmHg"></div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-semibold">6 Months Post-Op</span>
<span class="font-semibold">13.7 mmHg</span>
</div>
<div class="bar" style="width: 55%" data-value="13.7 mmHg"></div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-semibold">12 Months Post-Op</span>
<span class="font-semibold">12.9 mmHg</span>
</div>
<div class="bar" style="width: 52%" data-value="12.9 mmHg"></div>
</div>
</div>
</div>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Fundus_photograph_of_normal_right_eye.jpg/1280px-Fundus_photograph_of_normal_right_eye.jpg" alt="Clinical Benefits" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- Comparison with Trabeculectomy -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Preserflo™ vs. Trabeculectomy</h2>
<div class="grid grid-cols-2 gap-6">
<div class="bg-blue-50 p-6 rounded-lg">
<h3 class="text-xl font-semibold mb-3"><i class="fas fa-star mr-2"></i>Preserflo™ MicroShunt</h3>
<ul class="text-left text-sm">
<li><i class="fas fa-check text-green-500"></i>Standardized procedure</li>
<li><i class="fas fa-check text-green-500"></i>Lower risk of hypotony</li>
<li><i class="fas fa-check text-green-500"></i>Faster visual recovery</li>
<li><i class="fas fa-check text-green-500"></i>Fewer post-op interventions</li>
</ul>
</div>
<div class="bg-gray-50 p-6 rounded-lg">
<h3 class="text-xl font-semibold mb-3"><i class="fas fa-hospital mr-2"></i>Trabeculectomy</h3>
<ul class="text-left text-sm">
<li><i class="fas fa-exclamation-circle text-red-500"></i>More surgeon dependent</li>
<li><i class="fas fa-exclamation-circle text-red-500"></i>Higher risk of complications</li>
<li><i class="fas fa-exclamation-circle text-red-500"></i>Longer recovery period</li>
<li><i class="fas fa-exclamation-circle text-red-500"></i>More frequent follow-up needed</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Safety Considerations -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Safety Profile</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left">
<li><i class="fas fa-shield-alt"></i>Lower risk of hypotony compared to trabeculectomy</li>
<li><i class="fas fa-check-shield"></i>Minimal risk of device erosion</li>
<li><i class="fas fa-virus-slash"></i>Reduced risk of infection</li>
<li><i class="fas fa-user-nurse"></i>Manageable post-operative care</li>
</ul>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Ophthalmology_symbol.svg/1280px-Ophthalmology_symbol.svg.png" alt="Safety Measures" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- Clinical Evidence -->
<section>
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Clinical Evidence</h2>
<div class="grid grid-cols-2 gap-8">
<div>
<ul class="text-left mb-4">
<li><i class="fas fa-chart-pie"></i>High success rates in clinical trials</li>
<li><i class="fas fa-percent"></i>Significant IOP reduction (40-50%)</li>
<li><i class="fas fa-prescription"></i>Medication reduction in most patients</li>
<li><i class="fas fa-clock"></i>Sustained effectiveness over time</li>
</ul>
<div class="chart-container">
<div class="chart-title">Success Rates at 12 Months</div>
<div class="stat-grid">
<div class="stat-card">
<i class="fas fa-check-double text-3xl text-green-600 mb-2"></i>
<div class="stat-number">83.3%</div>
<div>Complete Success</div>
<div class="text-sm text-gray-600">No Medications</div>
</div>
<div class="stat-card">
<i class="fas fa-star text-3xl text-blue-600 mb-2"></i>
<div class="stat-number">94.8%</div>
<div>Qualified Success</div>
<div class="text-sm text-gray-600">≤ 2 Medications</div>
</div>
</div>
</div>
</div>
<div class="flex items-center justify-center">
<div class="img-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/DNA_orbit_animated.gif/1280px-DNA_orbit_animated.gif" alt="Clinical Research" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</section>
<!-- Conclusion -->
<section class="bg-gradient-to-r from-blue-100 to-blue-200">
<div class="custom-bg">
<h2 class="text-3xl font-bold mb-6">Conclusion</h2>
<div class="grid grid-cols-1 gap-6">
<div class="text-left">
<p class="mb-4"><i class="fas fa-award text-2xl mr-3"></i>The Preserflo™ MicroShunt represents a significant advancement in glaucoma surgery:</p>
<ul class="text-left">
<li><i class="fas fa-lightbulb"></i>Innovative design with proven effectiveness</li>
<li><i class="fas fa-tasks"></i>Standardized surgical technique</li>
<li><i class="fas fa-shield-check"></i>Excellent safety profile</li>
<li><i class="fas fa-star"></i>Potential to become the new standard of care</li>
</ul>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- Reveal.js Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/reveal.min.js"></script>
<script>
Reveal.initialize({
hash: true,
center: true,
progress: true,
controls: true,
transition: 'slide',
width: 1200,
height: 800
});
</script>
</body>
</html> |