-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (97 loc) · 4.45 KB
/
index.html
File metadata and controls
101 lines (97 loc) · 4.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<title>Information Diagnostics — Health Condition Explorer</title>
<meta name="description" content="Understand complex, often co-occurring health conditions. Research-annotated, openly accessible information for MCAS, hEDS, POTS, lipedema, and more.">
<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&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main class="page-content" id="main">
<section class="hero">
<div class="container">
<h1 class="hero__title">Understanding your body shouldn't be this hard</h1>
<p class="hero__subtitle">
Research-backed, plainly written information about complex conditions that often go undiagnosed —
so you can have better conversations with your doctors.
</p>
<div class="hero__actions">
<a href="questionnaire.html" class="btn btn--primary btn--lg">Explore My Symptoms</a>
<a href="explore.html" class="btn btn--secondary btn--lg">I Know My Condition</a>
</div>
</div>
</section>
<section class="section section--muted">
<div class="container">
<div class="section-header">
<h2>How it works</h2>
<p>Three ways to explore the information you need</p>
</div>
<div class="how-it-works">
<div class="how-it-works__step">
<div class="how-it-works__number">1</div>
<h3 class="how-it-works__title">Describe your symptoms</h3>
<p class="how-it-works__desc">
Select your symptoms from an organized, searchable list. Add details about patterns and triggers to refine results.
</p>
</div>
<div class="how-it-works__step">
<div class="how-it-works__number">2</div>
<h3 class="how-it-works__title">See what matches</h3>
<p class="how-it-works__desc">
Our matching algorithm shows which conditions are commonly associated with your symptom cluster — ranked by relevance.
</p>
</div>
<div class="how-it-works__step">
<div class="how-it-works__number">3</div>
<h3 class="how-it-works__title">Learn and prepare</h3>
<p class="how-it-works__desc">
Read evidence-graded information about conditions and treatments. Bring what you learn to your next doctor's appointment.
</p>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="section-header">
<h2>Conditions we cover</h2>
<p>Evidence-graded information about conditions that frequently co-occur and go under-recognized</p>
</div>
<div class="grid grid--3 fade-in-stagger" id="conditions-grid"></div>
<div class="text-center mt-8">
<a href="explore.html" class="btn btn--secondary">View All Conditions</a>
</div>
</div>
</section>
<section class="section section--muted">
<div class="container container--narrow">
<div class="card card--flat text-center" style="padding: var(--space-10) var(--space-8);">
<h2 class="mb-4">The MCAS–hEDS–POTS Triad</h2>
<p class="body-text text-muted">
These three conditions increasingly appear together as a clinically meaningful cluster.
MCAS is present in ~31% of patients with both POTS and hEDS. Joint hypermobility appears
in 30–57% of POTS patients. Understanding these overlaps can change the diagnostic conversation.
</p>
<div class="mt-6">
<a href="questionnaire.html" class="btn btn--primary">Explore the Connection</a>
</div>
</div>
</div>
</section>
</main>
<script src="js/app.js"></script>
<script>
initPage('home', () => {
const grid = document.getElementById('conditions-grid');
const featured = AppData.conditions.slice(0, 6);
grid.innerHTML = featured.map(c => Components.conditionCard(c)).join('');
});
</script>
</body>
</html>