inou/static/pricing.html

260 lines
8.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>inou health - Pricing</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #f8f9fa;
padding: 40px 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
h1 {
text-align: center;
margin-bottom: 10px;
color: #1a1a1a;
font-size: 36px;
}
.tagline {
text-align: center;
color: #666;
margin-bottom: 50px;
font-size: 18px;
}
.pricing-table {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
table {
width: 100%;
border-collapse: collapse;
}
thead tr {
background: #f8f9fa;
}
th {
padding: 24px 16px;
text-align: left;
font-weight: 600;
color: #1a1a1a;
border-bottom: 2px solid #e9ecef;
}
th:first-child {
width: 40%;
}
.tier-header {
text-align: center !important;
}
.tier-name {
font-size: 20px;
margin-bottom: 8px;
}
.tier-price {
font-size: 28px;
font-weight: 700;
color: #0066cc;
}
.tier-price .free {
color: #28a745;
}
tbody tr {
border-bottom: 1px solid #e9ecef;
}
tbody tr:last-child {
border-bottom: none;
}
td {
padding: 16px;
vertical-align: middle;
}
.feature-name {
font-weight: 500;
color: #1a1a1a;
}
.feature-cell {
text-align: center;
font-size: 20px;
}
.check {
color: #28a745;
}
.cross {
color: #dc3545;
}
.category-row {
background: #f8f9fa;
font-weight: 600;
color: #495057;
}
.category-row td {
padding: 12px 16px;
}
</style>
</head>
<body>
<div class="container">
<h1>inou health</h1>
<p class="tagline">AI answers for you</p>
<div class="pricing-table">
<table>
<thead>
<tr>
<th></th>
<th class="tier-header">
<div class="tier-name">Monitor</div>
<div class="tier-price"><span class="free">Free</span></div>
</th>
<th class="tier-header">
<div class="tier-name">Optimize</div>
<div class="tier-price">$12<span style="font-size: 16px; font-weight: 400;">/mo</span></div>
</th>
<th class="tier-header">
<div class="tier-name">Research</div>
<div class="tier-price">$35<span style="font-size: 16px; font-weight: 400;">/mo</span></div>
</th>
</tr>
</thead>
<tbody>
<tr class="category-row">
<td colspan="4">Health Data</td>
</tr>
<tr>
<td class="feature-name">Vitals (BP, HR, weight, temp)</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Symptoms & conditions</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Medications</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Exercise & activity</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Family history</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Lab results</td>
<td class="feature-cell cross"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Consumer genome (23andMe)</td>
<td class="feature-cell cross"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Medical imaging (MRI, CT, X-ray)</td>
<td class="feature-cell cross"></td>
<td class="feature-cell cross"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Clinical genome sequencing</td>
<td class="feature-cell cross"></td>
<td class="feature-cell cross"></td>
<td class="feature-cell check"></td>
</tr>
<tr class="category-row">
<td colspan="4">AI Features</td>
</tr>
<tr>
<td class="feature-name">MCP integration (Claude, ChatGPT)</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Personalized AI answers</td>
<td class="feature-cell">Limited</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Health trend analysis</td>
<td class="feature-cell cross"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr class="category-row">
<td colspan="4">Storage & Access</td>
</tr>
<tr>
<td class="feature-name">Multi-dossier support (family)</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">FIPS 140-3 encryption</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
<tr>
<td class="feature-name">Data export</td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
<td class="feature-cell check"></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>