-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
415 lines (362 loc) · 15.7 KB
/
team.html
File metadata and controls
415 lines (362 loc) · 15.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meet the Team - CorMetrix</title>
<link rel="stylesheet" href="styles.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=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Team Page Specific Styles */
.team-hero {
background-color: #fff;
padding: 40px 0;
text-align: center;
}
.team-hero h1 {
color: var(--primary-color);
font-size: 32px;
margin-bottom: 20px;
}
.team-intro {
background-color: var(--light-purple);
padding: 60px 0;
}
.team-intro .container {
display: flex;
align-items: center;
gap: 40px;
}
.team-intro-heading {
flex: 1;
}
.team-intro-heading h2 {
color: var(--primary-color);
font-size: 42px;
line-height: 1.2;
margin-bottom: 20px;
}
.team-intro-heading .bold-text {
color: var(--dark-purple);
}
.team-intro-text {
flex: 1;
}
.team-intro-text p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 15px;
}
.team-members {
background-color: #fff;
padding: 80px 0;
}
.team-members h2 {
text-align: center;
font-size: 36px;
margin-bottom: 40px;
}
.team-mission {
text-align: center;
max-width: 800px;
margin: 0 auto 60px;
font-size: 16px;
line-height: 1.6;
}
.team-cards {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.team-card {
width: 300px;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.team-card-header {
padding: 20px;
color: #fff;
}
.team-card-header.ceo {
background-color: #7b2cbf;
}
.team-card-header.cto {
background-color: #3a0ca3;
}
.team-card-header.coo {
background-color: #7b2cbf;
}
.team-card-title {
font-size: 14px;
margin-bottom: 5px;
}
.team-card-name {
font-size: 24px;
font-weight: 700;
margin-bottom: 5px;
}
.team-card-position {
font-size: 18px;
font-weight: 500;
}
.team-card-content {
padding: 20px;
}
.team-card-content p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
}
.team-vision {
background-color: var(--dark-purple);
color: #fff;
padding: 80px 0;
text-align: center;
}
.team-vision .container {
max-width: 900px;
}
.team-vision h2 {
font-size: 32px;
margin-bottom: 30px;
}
.team-vision p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 20px;
}
/* Responsive styles */
@media (max-width: 992px) {
.team-intro .container {
flex-direction: column;
text-align: center;
}
.team-intro-heading h2 {
font-size: 36px;
}
.team-cards {
justify-content: center;
}
.team-card {
width: 100%;
max-width: 350px;
}
}
@media (max-width: 768px) {
.team-intro-heading h2 {
font-size: 30px;
}
.team-vision h2 {
font-size: 26px;
}
.team-vision p {
font-size: 16px;
}
.cta-button {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
border-radius: 30px;
}
.cta-button .btn {
padding: 10px 16px;
font-size: 14px;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<a href="index.html">
<div class="logo">
<img src="images/cormetrix-logo.jpg" alt="CorMetrix Logo">
</div>
</a>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="platform.html">Platform</a>
<span class="dropdown-arrow">▼</span>
<div class="dropdown-menu">
<a href="platform.html">Overview</a>
<a href="platform.html#features">Features</a>
<a href="platform.html#technology">Technology</a>
</div>
</li>
<li class="dropdown">
<a href="#">Products</a>
<span class="dropdown-arrow">▼</span>
<div class="dropdown-menu">
<a href="verixai.html">VerixAI</a>
<a href="atriai.html">AtriAI</a>
</div>
</li>
<li class="dropdown active">
<a href="team.html">About Us</a>
<span class="dropdown-arrow">▼</span>
<div class="dropdown-menu">
<a href="team.html" class="active">Meet the Team</a>
<a href="team.html#mission">Our Mission</a>
</div>
</li>
<li><a href="platform.html#why-section">Compliance</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div class="cta-button">
<a href="#" class="btn btn-primary">Book a Demo <span class="arrow">→</span></a>
</div>
</div>
</header>
<main>
<section class="team-hero">
<div class="container">
<h1>Meet the Team</h1>
</div>
</section>
<section class="team-intro">
<div class="container">
<div class="team-intro-heading">
<h2>Where Deep Expertise <span class="bold-text">Meets Bold Innovation</span></h2>
</div>
<div class="team-intro-text">
<p>This isn't the first time we've worked together—and that makes all the difference. With decades of shared experience in healthcare and legal systems, our team is united by a shared mission to fix what we've all seen broken.</p>
</div>
</div>
</section>
<section class="team-members">
<div class="container">
<h2>Our Team</h2>
<div id="mission" class="team-mission">
<p>We've seen firsthand how complexity in healthcare and legal systems slows people down, creates confusion, and leads to errors. That's why we're building systems that always prioritize clarity by combining purpose. At CorMetrix, we're building the systems we always wished we had: ones that learn from every case, adapt to real-world workflows, and help make better, safer, more consistent decisions.</p>
<p>Our mission is simple: turn fragmented information into structured intelligence, and give people the tools they need to deliver better outcomes—at scale.</p>
</div>
<div class="team-cards">
<!-- CEO Card -->
<div class="team-card">
<div class="team-card-header ceo">
<div class="team-card-title">Founder</div>
<div class="team-card-name">Sumedh Kanetkar</div>
<div class="team-card-position">CEO</div>
</div>
<div class="team-card-content">
<p>With a deep background in healthcare, Sumedh brings a unique perspective on the challenges facing medical professionals today. His experience as a physician and healthcare administrator gives him firsthand knowledge of the pain points in clinical workflows.</p>
<p>At CorMetrix, he leads our vision and strategy, ensuring that every product we build addresses real clinical needs in a way that integrates seamlessly into existing workflows.</p>
</div>
</div>
<!-- COO Card -->
<div class="team-card">
<div class="team-card-header coo">
<div class="team-card-title">Meet</div>
<div class="team-card-name">Sanjay Patel</div>
<div class="team-card-position">COO</div>
</div>
<div class="team-card-content">
<p>Sanjay brings over a decade of experience in AI and healthcare systems, with a focus on scaling operations while maintaining quality. His background in product development ensures our solutions are both innovative and practical.</p>
<p>As COO, Sanjay oversees our operations and implementation strategy, making sure our technology delivers real-world value and seamless user experiences.</p>
</div>
</div>
<!-- CTO Card -->
<div class="team-card">
<div class="team-card-header cto">
<div class="team-card-title">Introducing</div>
<div class="team-card-name">Lakshman Krishnamurthy</div>
<div class="team-card-position">CTO</div>
</div>
<div class="team-card-content">
<p>Lakshman brings 15+ years of experience in AI and machine learning, specializing in healthcare applications. His technical expertise ensures our platform remains at the cutting edge of what's possible with medical AI.</p>
<p>At CorMetrix, he specializes in deep learning models that understand medical context and deliver insights that matter to clinicians.</p>
</div>
</div>
<!-- Additional Team Members -->
<div class="team-card">
<div class="team-card-header coo">
<div class="team-card-title">Meet</div>
<div class="team-card-name">Aria Srinivasa</div>
<div class="team-card-position">CCO</div>
</div>
<div class="team-card-content">
<p>Aria is a legal expert with over a decade of experience in healthcare compliance and regulatory affairs. She ensures our products meet the highest standards of data privacy and security.</p>
<p>At CorMetrix, she oversees clinical integrity, making sure that our AI solutions are both effective and ethically sound.</p>
</div>
</div>
<div class="team-card">
<div class="team-card-header cto">
<div class="team-card-title">Meet</div>
<div class="team-card-name">Kate Johnson</div>
<div class="team-card-position">Ph.D., MBA</div>
</div>
<div class="team-card-content">
<p>Kate is a physician-scientist with over a decade of experience in clinical research and healthcare innovation. Her background bridges the gap between clinical practice and technological advancement.</p>
<p>At CorMetrix, she drives our research initiatives, ensuring our solutions are grounded in the latest medical evidence and address real clinical needs.</p>
</div>
</div>
</div>
</div>
</section>
<section class="team-vision">
<div class="container">
<h2>We envision a future where medical intelligence evolves with every case—delivering better, smarter, and more reproducible outcomes.</h2>
<p>At CorMetrix, we're not just building software—we're rethinking how high-stakes decisions are made. Our team is made up of clinicians, engineers, and specialized experts who have spent years together solving hard problems side by side—long before CorMetrix began.</p>
<p>That shared experience allows the trust, speed, and clarity behind everything we do. We're building tools that give healthcare and legal teams the confidence and time they need to focus on what matters most.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<img src="images/cormetrix-footer-logo.svg" alt="CorMetrix Logo">
<p>Questions?</p>
<a href="questions.html" class="btn btn-outline-light">Chat with Us</a>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>Company</h4>
<ul>
<li><a href="platform.html#why-section">Compliance</a></li>
<li><a href="team.html">About Us</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Legal</h4>
<ul>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms & Conditions</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Resources</h4>
<ul>
<li><a href="docs.html">Docs</a></li>
<li><a href="questions.html">FAQs</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Coremetrix. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>