Changed around line 1
+
+
+
+
+
+
Metabolic Health Resource+
+ /* Reset and base styles */
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: #333;
+ }
+
+ /* Layout */
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 24px;
+ }
+
+ /* Header styles */
+ .hero {
+ background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
+ padding: 64px 0;
+ text-align: center;
+ }
+
+ .hero-icon {
+ width: 48px;
+ height: 48px;
+ margin-bottom: 16px;
+ }
+
+ .hero h1 {
+ font-size: 48px;
+ font-weight: bold;
+ margin-bottom: 16px;
+ color: #111827;
+ }
+
+ .hero p {
+ font-size: 20px;
+ color: #4B5563;
+ margin-bottom: 32px;
+ }
+
+ /* Button styles */
+ .button-group {
+ display: flex;
+ gap: 16px;
+ justify-content: center;
+ }
+
+ .button {
+ padding: 12px 24px;
+ border-radius: 8px;
+ font-weight: 500;
+ cursor: pointer;
+ transition: all 0.2s;
+ }
+
+ .button-primary {
+ background: #2563EB;
+ color: white;
+ border: none;
+ }
+
+ .button-primary:hover {
+ background: #1D4ED8;
+ }
+
+ .button-secondary {
+ background: white;
+ color: #2563EB;
+ border: 1px solid #2563EB;
+ }
+
+ .button-secondary:hover {
+ background: #EFF6FF;
+ }
+
+ /* Features grid */
+ .features {
+ padding: 64px 0;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 32px;
+ margin-top: 32px;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 24px;
+ border-radius: 12px;
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ transition: box-shadow 0.2s;
+ }
+
+ .feature-card:hover {
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .feature-icon {
+ width: 32px;
+ height: 32px;
+ margin-bottom: 16px;
+ color: #2563EB;
+ }
+
+ .feature-card h3 {
+ font-size: 20px;
+ margin-bottom: 8px;
+ }
+
+ /* Technical section */
+ .technical {
+ background: #EFF6FF;
+ padding: 64px 0;
+ }
+
+ .technical h2 {
+ font-size: 32px;
+ text-align: center;
+ margin-bottom: 48px;
+ }
+
+ .technical-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 32px;
+ }
+
+ .technical-item {
+ display: flex;
+ gap: 16px;
+ }
+
+ .technical-icon {
+ width: 24px;
+ height: 24px;
+ flex-shrink: 0;
+ margin-top: 4px;
+ color: #2563EB;
+ }
+
+ /* Footer */
+ .footer {
+ background: white;
+ padding: 32px 0;
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .github-link {
+ display: flex;
+ align-items: center;
+ gap: 8px;
+ color: #4B5563;
+ text-decoration: none;
+ transition: color 0.2s;
+ }
+
+ .github-link:hover {
+ color: #2563EB;
+ }
+
+ /* Responsive adjustments */
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 36px;
+ }
+
+ .button-group {
+ flex-direction: column;
+ align-items: stretch;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 16px;
+ text-align: center;
+ }
+ }
+
+
+
+
+
+
+
+
Take Control of Your Metabolic Health
+
Screen your metabolic health status and access personalized self-management resources
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Metabolic Health Screening
+
Get your personalized metabolic health score with detailed insights and recommendations
+
+
+
+
+
Self-Management Resources
+
Access comprehensive education and monitoring tools to improve your metabolic health
+
+
+
+
+
+
Private & Secure
+
Your health data stays on your device - no account needed
+
+
+
+
+
+
+
+
Built for Privacy & Accessibility
+
+
+
+
+
+
+
+
Local-First Design
+
Works entirely in your browser - no data ever leaves your device
+
+
+
+
+
+
+
+
+
+
+
+
Optional Research Contribution
+
Choose to share your data with research organizations
+
+
+
+
+
+
+
+
+
+
+ // Add smooth scrolling for "Learn More" button
+ document.querySelector('.button-secondary').addEventListener('click', () => {
+ document.querySelector('.features').scrollIntoView({ behavior: 'smooth' });
+ });
+
+ // Add hover effects for feature cards
+ document.querySelectorAll('.feature-card').forEach(card => {
+ card.addEventListener('mouseenter', () => {
+ card.style.transform = 'translateY(-4px)';
+ });
+ card.addEventListener('mouseleave', () => {
+ card.style.transform = 'translateY(0)';
+ });
+ });
+
+
+