-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
677 lines (665 loc) · 38.8 KB
/
Copy pathindex.html
File metadata and controls
677 lines (665 loc) · 38.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WaveSight — Advanced Wound Imaging Solutions</title>
<link rel="stylesheet" href="css/style.css">
<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@300;400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="#" class="nav-logo">
<svg class="logo-icon" viewBox="0 0 40 40" width="40" height="40">
<defs>
<linearGradient id="logoGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00B4D8"/>
<stop offset="100%" style="stop-color:#0077B6"/>
</linearGradient>
</defs>
<circle cx="20" cy="20" r="18" fill="none" stroke="url(#logoGrad)" stroke-width="2.5"/>
<path d="M8 20 Q14 10, 20 20 Q26 30, 32 20" fill="none" stroke="url(#logoGrad)" stroke-width="2.5" stroke-linecap="round"/>
</svg>
<span>WaveSight</span>
</a>
<ul class="nav-links" id="navLinks">
<li><a href="#products">Products</a></li>
<li><a href="#technology">Technology</a></li>
<li><a href="#evidence">Clinical Evidence</a></li>
<li><a href="#about">About</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#contact" class="nav-cta">Request a Demo</a></li>
</ul>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero" id="hero">
<div class="hero-bg-pattern"></div>
<div class="container hero-content">
<div class="hero-text">
<p class="hero-tag">Next-Generation Wound Assessment</p>
<h1>See Beyond<br>the Surface</h1>
<p class="hero-description">
WaveSight combines <strong>millimeter-wave</strong> and <strong>multispectral optical imaging</strong>
technologies to deliver comprehensive, objective wound assessment — measuring wound size,
moisture, perfusion, and infection risk for better patient outcomes.
</p>
<div class="hero-actions">
<a href="#products" class="btn btn-primary">Explore Products</a>
<a href="#contact" class="btn btn-outline">Request a Demo</a>
</div>
<div class="hero-badges">
<div class="badge">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/>
</svg>
<span>NIH Funded</span>
</div>
<div class="badge">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"/>
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/>
</svg>
<span>Patent Pending</span>
</div>
<div class="badge">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M22 10v6M2 10l10-5 10 5-10 5z"/>
<path d="M6 12v5c0 2 3 4 6 4s6-2 6-4v-5"/>
</svg>
<span>University at Buffalo</span>
</div>
</div>
</div>
<div class="hero-visual">
<div class="device-showcase">
<div class="device-glow"></div>
<div class="device-placeholder">
<svg viewBox="0 0 300 400" width="300" height="400">
<defs>
<linearGradient id="deviceGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0D1B3E"/>
<stop offset="100%" style="stop-color:#1A3A6E"/>
</linearGradient>
<linearGradient id="screenGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00B4D8"/>
<stop offset="100%" style="stop-color:#0077B6"/>
</linearGradient>
</defs>
<!-- Device body -->
<rect x="60" y="30" width="180" height="340" rx="20" fill="url(#deviceGrad)" stroke="#2A4A7F" stroke-width="1"/>
<!-- Screen -->
<rect x="80" y="60" width="140" height="200" rx="10" fill="#0A1628"/>
<!-- Screen content - wound scan visualization -->
<circle cx="150" cy="150" r="50" fill="none" stroke="#00B4D8" stroke-width="1" opacity="0.5"/>
<circle cx="150" cy="150" r="35" fill="none" stroke="#00D4AA" stroke-width="1" opacity="0.7"/>
<circle cx="150" cy="150" r="20" fill="none" stroke="#FF6B6B" stroke-width="1.5" opacity="0.8"/>
<circle cx="150" cy="150" r="8" fill="#FF6B6B" opacity="0.4"/>
<!-- Scan lines -->
<line x1="90" y1="120" x2="210" y2="120" stroke="#00B4D8" stroke-width="0.5" opacity="0.3"/>
<line x1="90" y1="150" x2="210" y2="150" stroke="#00B4D8" stroke-width="0.5" opacity="0.3"/>
<line x1="90" y1="180" x2="210" y2="180" stroke="#00B4D8" stroke-width="0.5" opacity="0.3"/>
<line x1="120" y1="70" x2="120" y2="250" stroke="#00B4D8" stroke-width="0.5" opacity="0.3"/>
<line x1="150" y1="70" x2="150" y2="250" stroke="#00B4D8" stroke-width="0.5" opacity="0.3"/>
<line x1="180" y1="70" x2="180" y2="250" stroke="#00B4D8" stroke-width="0.5" opacity="0.3"/>
<!-- Data readouts -->
<text x="90" y="80" fill="#00B4D8" font-size="8" font-family="Inter, monospace">SCAN ACTIVE</text>
<text x="90" y="248" fill="#00D4AA" font-size="7" font-family="Inter, monospace">MOISTURE: 0.63</text>
<text x="158" y="248" fill="#00D4AA" font-size="7" font-family="Inter, monospace">4.2 cm²</text>
<!-- Camera lens -->
<circle cx="150" cy="290" r="18" fill="#0A1628" stroke="#2A4A7F" stroke-width="1"/>
<circle cx="150" cy="290" r="12" fill="#1A2A4E"/>
<circle cx="150" cy="290" r="6" fill="url(#screenGrad)" opacity="0.6"/>
<!-- LED indicators -->
<circle cx="120" cy="320" r="3" fill="#00D4AA" opacity="0.8"/>
<circle cx="140" cy="320" r="3" fill="#00B4D8" opacity="0.8"/>
<circle cx="160" cy="320" r="3" fill="#00B4D8" opacity="0.8"/>
<circle cx="180" cy="320" r="3" fill="#00D4AA" opacity="0.8"/>
</svg>
</div>
</div>
</div>
</div>
<div class="hero-scroll-indicator">
<span>Scroll to explore</span>
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 5v14M19 12l-7 7-7-7"/>
</svg>
</div>
</section>
<!-- Products Section -->
<section class="products" id="products">
<div class="container">
<div class="section-header">
<p class="section-tag">Our Products</p>
<h2>Two Technologies, One Mission</h2>
<p class="section-description">
WaveSight offers two complementary imaging platforms designed for comprehensive wound assessment,
each leveraging a distinct modality to reveal what the naked eye cannot see.
</p>
</div>
<div class="product-grid">
<!-- WaveSight-RF -->
<div class="product-card product-rf">
<div class="product-card-header">
<div class="product-icon">
<svg viewBox="0 0 60 60" width="60" height="60">
<circle cx="30" cy="30" r="28" fill="none" stroke="#00B4D8" stroke-width="1.5" opacity="0.3"/>
<path d="M15 30 Q20 15, 30 30 Q40 45, 45 30" fill="none" stroke="#00B4D8" stroke-width="2.5" stroke-linecap="round"/>
<path d="M10 30 Q17 8, 30 30 Q43 52, 50 30" fill="none" stroke="#00B4D8" stroke-width="1" opacity="0.5" stroke-linecap="round"/>
</svg>
</div>
<span class="product-label">Millimeter-Wave Imaging</span>
<h3>WaveSight-RF</h3>
<p class="product-tagline">See right through the bandage</p>
</div>
<div class="product-card-body">
<p>
WaveSight-RF is the only wound imaging device that scans <strong>through gauze</strong>
using millimeter-wave technology. It measures wound size, tissue moisture, and infection
risk — all without removing the dressing.
</p>
<ul class="product-features">
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00B4D8" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Scan through gauze and bandages
</li>
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00B4D8" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Tissue moisture mapping
</li>
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00B4D8" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Wound size measurement
</li>
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00B4D8" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Infection risk assessment
</li>
</ul>
<div class="product-video">
<iframe src="https://www.youtube.com/embed/b8QkTriurNc" title="WaveSight-RF Demo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<a href="#contact" class="btn btn-primary">Learn More</a>
</div>
</div>
<!-- WaveSight-OPT -->
<div class="product-card product-opt">
<div class="product-card-header">
<div class="product-icon">
<svg viewBox="0 0 60 60" width="60" height="60">
<circle cx="30" cy="30" r="28" fill="none" stroke="#00D4AA" stroke-width="1.5" opacity="0.3"/>
<circle cx="30" cy="30" r="12" fill="none" stroke="#00D4AA" stroke-width="2"/>
<circle cx="30" cy="30" r="5" fill="#00D4AA" opacity="0.4"/>
<line x1="30" y1="2" x2="30" y2="14" stroke="#00D4AA" stroke-width="1.5" opacity="0.5"/>
<line x1="30" y1="46" x2="30" y2="58" stroke="#00D4AA" stroke-width="1.5" opacity="0.5"/>
<line x1="2" y1="30" x2="14" y2="30" stroke="#00D4AA" stroke-width="1.5" opacity="0.5"/>
<line x1="46" y1="30" x2="58" y2="30" stroke="#00D4AA" stroke-width="1.5" opacity="0.5"/>
</svg>
</div>
<span class="product-label">Multispectral Imaging</span>
<h3>WaveSight-OPT</h3>
<p class="product-tagline">Informing wound care for everyone</p>
</div>
<div class="product-card-body">
<p>
WaveSight-OPT is an affordable, lightweight imaging sensor that measures
<strong>perfusion, infection, and wound size</strong> in one scan — designed
specifically for home care where competitors cannot reach.
</p>
<ul class="product-features">
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00D4AA" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Perfusion sensing via pulsation imaging
</li>
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00D4AA" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Autofluorescence infection detection
</li>
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00D4AA" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Deep learning wound size estimation
</li>
<li>
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="#00D4AA" stroke-width="2"><path d="M20 6L9 17l-5-5"/></svg>
Accessible and affordable for home use
</li>
</ul>
<div class="product-video">
<iframe src="https://www.youtube.com/embed/KKspQt-zYZg" title="WaveSight-OPT Demo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<a href="#contact" class="btn btn-secondary">Learn More</a>
</div>
</div>
</div>
<!-- Product Comparison -->
<div class="product-comparison">
<h3>Better Together</h3>
<p>
While each device delivers powerful standalone insights, combining WaveSight-RF and WaveSight-OPT
provides a <strong>complete wound profile</strong> — from surface to subsurface — for truly comprehensive assessment.
</p>
<div class="comparison-visual">
<div class="comparison-item">
<div class="comparison-layer surface">
<span>Surface</span>
<small>WaveSight-OPT</small>
</div>
<div class="comparison-layer subsurface">
<span>Subsurface</span>
<small>WaveSight-RF</small>
</div>
<div class="comparison-layer deep">
<span>Deep Tissue</span>
<small>WaveSight-RF</small>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Technology Section -->
<section class="technology" id="technology">
<div class="container">
<div class="section-header">
<p class="section-tag">Our Technology</p>
<h2>Science-Driven Innovation</h2>
<p class="section-description">
Developed at the University at Buffalo's Embedded Sensing & Computing Lab,
WaveSight's imaging platforms combine novel sensing modalities with AI to deliver
objective wound data in a portable, affordable form factor.
</p>
</div>
<div class="tech-grid">
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 48 48" width="48" height="48" fill="none" stroke="#00B4D8" stroke-width="2">
<path d="M6 24h6l4-8 4 16 4-12 4 8 4-4h10"/>
</svg>
</div>
<h4>Millimeter-Wave Sensing</h4>
<p>WaveSight-RF uses millimeter-wave technology to scan wounds through gauze and bandages, generating moisture maps and biomarker data without removing the dressing — eliminating pain and infection risk.</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 48 48" width="48" height="48" fill="none" stroke="#00D4AA" stroke-width="2">
<circle cx="24" cy="24" r="8"/>
<path d="M24 4v6M24 38v6M4 24h6M38 24h6M9.86 9.86l4.24 4.24M33.9 33.9l4.24 4.24M9.86 38.14l4.24-4.24M33.9 14.1l4.24-4.24"/>
</svg>
</div>
<h4>Pulsation Imaging</h4>
<p>WaveSight-OPT picks up the heartbeat of your tissue. By detecting subtle pulsation signals in reflected light, it senses perfusion events earlier than competitor devices — critical for healing assessment.</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 48 48" width="48" height="48" fill="none" stroke="#FF6B6B" stroke-width="2">
<circle cx="24" cy="24" r="10"/>
<circle cx="24" cy="24" r="4" fill="#FF6B6B" opacity="0.3"/>
<path d="M24 6v4M24 38v4M6 24h4M38 24h4"/>
</svg>
</div>
<h4>Autofluorescence Imaging</h4>
<p>Using specific wavelength illumination (e.g., 405nm violet and 550nm ambient light), WaveSight-OPT detects bacterial autofluorescence on COTS hardware — no expensive custom optics needed.</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 48 48" width="48" height="48" fill="none" stroke="#6C63FF" stroke-width="2">
<rect x="6" y="10" width="36" height="28" rx="4"/>
<path d="M16 24h16M16 30h10"/>
<circle cx="14" cy="18" r="3"/>
</svg>
</div>
<h4>Deep Learning Size Estimation</h4>
<p>AI models trained on wound imagery automatically estimate wound size, eliminating manual measurement error. Combined with biomarker extraction, this enables objective wound healing tracking over time.</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 48 48" width="48" height="48" fill="none" stroke="#FFB347" stroke-width="2">
<path d="M12 36V24a12 12 0 0 1 24 0v12"/>
<path d="M8 36h32"/>
<circle cx="24" cy="20" r="4"/>
</svg>
</div>
<h4>3 Easy Steps</h4>
<p>Scan, Image, Track — both WaveSight devices follow a simple three-step workflow. Power on, scan the wound area, and receive instant actionable data including moisture maps, perfusion metrics, and healing alerts.</p>
</div>
<div class="tech-card">
<div class="tech-icon">
<svg viewBox="0 0 48 48" width="48" height="48" fill="none" stroke="#00B4D8" stroke-width="2">
<path d="M20 8h8v8h-8zM8 32h8v8H8zM32 32h8v8h-8z"/>
<path d="M24 16v8M16 36h-4V28h12M32 36h4V28H24"/>
</svg>
</div>
<h4>Dual-Modality Platform</h4>
<p>WaveSight-RF sees through bandages to map subsurface moisture; WaveSight-OPT captures surface perfusion and infection. Together they provide a complete wound profile no single device can match.</p>
</div>
</div>
</div>
</section>
<!-- Clinical Evidence Section -->
<section class="evidence" id="evidence">
<div class="container">
<div class="section-header light">
<p class="section-tag">Research & Funding</p>
<h2>Backed by Science, Funded by NIH</h2>
<p class="section-description">
WaveSight technology is developed at the University at Buffalo's Embedded Sensing & Computing Lab,
with support from the National Institutes of Health and validated through ongoing clinical studies.
</p>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">3</div>
<div class="stat-label">NIH R01 Grants</div>
<p>Funded by 3 NIH R01 Grants, including awards that are recently completed and currently active.</p>
</div>
<div class="stat-card">
<div class="stat-number">2</div>
<div class="stat-label">International Patents</div>
<p>Two international patents filed covering millimeter-wave wound sensing and multispectral imaging technologies.</p>
</div>
<div class="stat-card">
<div class="stat-number">4</div>
<div class="stat-label">Biomarkers Measured</div>
<p>Wound size, tissue moisture, perfusion, and infection risk — all captured non-invasively in a single scan workflow.</p>
</div>
<div class="stat-card">
<div class="stat-number">2</div>
<div class="stat-label">Clinical Studies</div>
<p>Ongoing clinical validation including a prospective intervention study and a longitudinal cohort study on wound healing trajectories.</p>
</div>
</div>
<div class="evidence-cta">
<p>Interested in our clinical data and peer-reviewed publications?</p>
<a href="#contact" class="btn btn-outline-light">Access Clinical Resources</a>
</div>
</div>
</section>
<!-- Use Cases Section -->
<section class="use-cases">
<div class="container">
<div class="section-header">
<p class="section-tag">Applications</p>
<h2>Designed for Every Care Setting</h2>
</div>
<div class="use-case-grid">
<div class="use-case-card">
<div class="use-case-icon">
<svg viewBox="0 0 48 48" width="40" height="40" fill="none" stroke="currentColor" stroke-width="2">
<rect x="8" y="20" width="32" height="16" rx="2"/>
<path d="M20 20V12a4 4 0 0 1 8 0v8"/>
<line x1="24" y1="26" x2="24" y2="30"/>
</svg>
</div>
<h4>Wound Care Clinics</h4>
<p>Streamline wound assessment workflows and improve documentation accuracy.</p>
</div>
<div class="use-case-card">
<div class="use-case-icon">
<svg viewBox="0 0 48 48" width="40" height="40" fill="none" stroke="currentColor" stroke-width="2">
<path d="M24 4L4 16v16l20 12 20-12V16z"/>
<path d="M24 20v12M18 23h12"/>
</svg>
</div>
<h4>Hospitals & Acute Care</h4>
<p>Enable rapid wound assessment at the bedside for surgical and trauma patients.</p>
</div>
<div class="use-case-card">
<div class="use-case-icon">
<svg viewBox="0 0 48 48" width="40" height="40" fill="none" stroke="currentColor" stroke-width="2">
<path d="M8 44V12a4 4 0 0 1 4-4h24a4 4 0 0 1 4 4v32"/>
<path d="M16 16h4v4h-4zM28 16h4v4h-4zM16 26h4v4h-4zM28 26h4v4h-4zM20 44V36h8v8"/>
</svg>
</div>
<h4>Long-Term Care</h4>
<p>Monitor chronic wounds and pressure injuries with objective, trackable data.</p>
</div>
<div class="use-case-card">
<div class="use-case-icon">
<svg viewBox="0 0 48 48" width="40" height="40" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="24" cy="24" r="20"/>
<path d="M24 14v10l7 7"/>
</svg>
</div>
<h4>Home Health</h4>
<p>Portable design enables consistent wound assessment in home care environments.</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about" id="about">
<div class="container">
<div class="about-grid">
<div class="about-content">
<p class="section-tag">About WaveSight</p>
<h2>Redefining Wound Assessment</h2>
<p>
WaveSight is developed at the <strong>University at Buffalo's Embedded Sensing & Computing Lab</strong>
and commercialized by <strong>Auspex Medix, LLC</strong>. Our mission is to provide clinicians with
objective, quantifiable wound data that drives better treatment decisions and improves patient outcomes.
</p>
<p>
Supported by NIH funding and led by researchers Alexander Gherardi, Xiaoyu Zhang, and Prof. Wenyao Xu,
WaveSight bridges cutting-edge sensing research with practical clinical tools.
Our dual-modality approach — combining millimeter-wave and multispectral optical imaging — delivers
wound insights that no single technology can achieve alone.
</p>
<div class="about-values">
<div class="value">
<h5>Innovation</h5>
<p>Pushing the boundaries of imaging science to solve real clinical challenges.</p>
</div>
<div class="value">
<h5>Evidence</h5>
<p>Every product decision is grounded in rigorous clinical validation.</p>
</div>
<div class="value">
<h5>Accessibility</h5>
<p>Making advanced wound assessment available across all care settings.</p>
</div>
</div>
</div>
<div class="about-visual">
<div class="about-images">
<img src="Print/Flyers/Flyer1_front.jpeg" alt="WaveSight-RF device scanning a wound through bandage" class="about-img">
<img src="Print/Flyers/Flyer2_front.jpg" alt="WaveSight-OPT device assessing wound on foot" class="about-img">
</div>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section class="resources" id="resources">
<div class="container">
<div class="section-header">
<p class="section-tag">Downloads</p>
<h2>Resources & Materials</h2>
<p class="section-description">
Download our product posters and flyers for more details on WaveSight technology and clinical applications.
</p>
</div>
<div class="resources-grid">
<a href="Print/Posters/Poster1.jpg" target="_blank" class="resource-card">
<div class="resource-thumb">
<img src="Print/Posters/Poster1.jpg" alt="WaveSight-RF Poster" loading="lazy">
</div>
<div class="resource-info">
<h4>WaveSight-RF Poster</h4>
<p>Research poster covering millimeter-wave wound imaging technology and clinical study results.</p>
<span class="resource-download">View Full Size →</span>
</div>
</a>
<a href="Print/Posters/Poster2.jpg" target="_blank" class="resource-card">
<div class="resource-thumb">
<img src="Print/Posters/Poster2.jpg" alt="WaveSight-OPT Poster" loading="lazy">
</div>
<div class="resource-info">
<h4>WaveSight-OPT Poster</h4>
<p>Research poster on multispectral optical imaging for wound perfusion and infection assessment.</p>
<span class="resource-download">View Full Size →</span>
</div>
</a>
<a href="Print/Flyers/Flyer1_front.jpeg" target="_blank" class="resource-card">
<div class="resource-thumb">
<img src="Print/Flyers/Flyer1_front.jpeg" alt="WaveSight-RF Flyer Front" loading="lazy">
</div>
<div class="resource-info">
<h4>WaveSight-RF Flyer</h4>
<p>Product flyer highlighting the scan-through-gauze capability and 3-step workflow.</p>
<span class="resource-download">View Full Size →</span>
</div>
</a>
<a href="Print/Flyers/Flyer2_front.jpg" target="_blank" class="resource-card">
<div class="resource-thumb">
<img src="Print/Flyers/Flyer2_front.jpg" alt="WaveSight-OPT Flyer Front" loading="lazy">
</div>
<div class="resource-info">
<h4>WaveSight-OPT Flyer</h4>
<p>Product flyer showcasing affordable home care wound imaging with perfusion sensing.</p>
<span class="resource-download">View Full Size →</span>
</div>
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<div class="contact-grid">
<div class="contact-info">
<p class="section-tag">Get in Touch</p>
<h2>Ready to Transform Your Wound Care Practice?</h2>
<p>
Schedule a personalized demo to see how WaveSight can enhance your clinical workflow
and improve patient outcomes.
</p>
<div class="contact-details">
<div class="contact-item">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="#00B4D8" stroke-width="2">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
<polyline points="22,6 12,13 2,6"/>
</svg>
<span>info@auspexmedix.com</span>
</div>
<div class="contact-item">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="#00B4D8" stroke-width="2">
<circle cx="12" cy="12" r="10"/>
<line x1="2" y1="12" x2="22" y2="12"/>
<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/>
</svg>
<span>auspexmedix.com</span>
</div>
<div class="contact-item">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="#00B4D8" stroke-width="2">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/>
<circle cx="12" cy="10" r="3"/>
</svg>
<span>University at Buffalo, Buffalo, NY</span>
</div>
</div>
</div>
<div class="contact-form-wrapper">
<form class="contact-form" id="contactForm">
<div class="form-row">
<div class="form-group">
<label for="firstName">First Name *</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div class="form-group">
<label for="lastName">Last Name *</label>
<input type="text" id="lastName" name="lastName" required>
</div>
</div>
<div class="form-group">
<label for="email">Email Address *</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="organization">Organization</label>
<input type="text" id="organization" name="organization">
</div>
<div class="form-group">
<label for="interest">Product Interest</label>
<select id="interest" name="interest">
<option value="">Select a product</option>
<option value="rf">WaveSight-RF</option>
<option value="opt">WaveSight-OPT</option>
<option value="both">Both Products</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="4" placeholder="Tell us about your wound care needs..."></textarea>
</div>
<button type="submit" class="btn btn-primary btn-full">Request a Demo</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a href="#" class="nav-logo">
<svg class="logo-icon" viewBox="0 0 40 40" width="36" height="36">
<circle cx="20" cy="20" r="18" fill="none" stroke="#00B4D8" stroke-width="2"/>
<path d="M8 20 Q14 10, 20 20 Q26 30, 32 20" fill="none" stroke="#00B4D8" stroke-width="2" stroke-linecap="round"/>
</svg>
<span>WaveSight</span>
</a>
<p>Advanced imaging solutions for objective wound assessment and improved patient outcomes.</p>
</div>
<div class="footer-links">
<h5>Products</h5>
<ul>
<li><a href="#products">WaveSight-RF</a></li>
<li><a href="#products">WaveSight-OPT</a></li>
<li><a href="#technology">Technology</a></li>
</ul>
</div>
<div class="footer-links">
<h5>Resources</h5>
<ul>
<li><a href="#evidence">Clinical Evidence</a></li>
<li><a href="#">Publications</a></li>
<li><a href="#">Training & Support</a></li>
</ul>
</div>
<div class="footer-links">
<h5>Company</h5>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div class="footer-regulatory">
<span class="reg-badge">NIH Funded</span>
<span class="reg-badge">UB Research</span>
</div>
<p>© 2026 Auspex Medix, LLC. All rights reserved.</p>
<div class="footer-legal">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Use</a>
<a href="#">Regulatory</a>
</div>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>