-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfermentation-mate.html
More file actions
95 lines (88 loc) · 5.02 KB
/
Copy pathfermentation-mate.html
File metadata and controls
95 lines (88 loc) · 5.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fermentation Mate - MATE Ecosystem</title>
<script src="https://cdn.tailwindcss.com"></script>
<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&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc; /* slate-50 */
}
.nav-link {
transition: color 0.3s, border-bottom-color 0.3s;
border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-link.active {
color: #0d9488; /* teal-600 */
border-bottom-color: #0d9488; /* teal-600 */
}
.card {
background-color: white;
border-radius: 0.75rem;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.1);
}
.section-title {
color: #1e293b; /* slate-800 */
}
.section-subtitle {
color: #475569; /* slate-600 */
}
.feature-card {
background: linear-gradient(145deg, #ffffff, #e6eefc);
border-left: 4px solid #0d9488; /* teal-600 */
}
</style>
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body class="text-slate-700">
<header class="bg-white/80 backdrop-blur-lg sticky top-0 z-50 shadow-sm">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<a href="index.html" class="text-2xl font-bold text-teal-600">
FSC<span class="text-slate-700">Ecosystem</span>
</a>
<a href="index.html#ecosystem" class="nav-link text-lg hover:text-teal-600">← Back to Mates</a>
</nav>
</header>
<main class="container mx-auto px-6 py-12">
<section id="fermentation-intro" class="text-center mb-16">
<h1 class="text-4xl md:text-5xl font-bold section-title mb-4">The Fermentation Mate</h1>
<p class="max-w-3xl mx-auto section-subtitle text-lg">Unlock the world of craft food and beverages. The Fermentation Mate demystifies and automates complex processes, making hobbies like sourdough and homebrewing accessible and rewarding for everyone.</p>
</section>
<!-- Fermentation Lab Section -->
<section id="fermentation-lab">
<h2 class="text-3xl font-bold section-title mb-3 flex items-center"><span class="text-4xl mr-4">🧪</span> The Fermentation Lab: Automated Craft Production</h2>
<p class="section-subtitle text-lg mb-8">This module taps into the growing consumer trends of home-based hobbies, scratch cooking, and wellness foods, transforming complex craft production into a simple, guided experience.</p>
<div class="grid md:grid-cols-1 lg:grid-cols-3 gap-8">
<div class="card feature-card p-6">
<h3 class="text-xl font-bold text-teal-700 mb-2">Process Automation & Monitoring</h3>
<p class="text-slate-600">An enclosed chamber with precise environmental controls utilizes IoT sensors for temperature, pH, and humidity to continuously monitor and regulate the key parameters for successful fermentation, ensuring consistent results every time.</p>
</div>
<div class="card feature-card p-6">
<h3 class="text-xl font-bold text-teal-700 mb-2">Guided Programs & Recipes</h3>
<p class="text-slate-600">The companion app provides guided, step-by-step programs for popular projects like sourdough, kimchi, kombucha, and yogurt. The AI manages the process, sends notifications for key milestones, and provides expert tips along the way.</p>
</div>
<div class="card feature-card p-6">
<h3 class="text-xl font-bold text-teal-700 mb-2">Legal Compliance for Homebrewing</h3>
<p class="text-slate-600">For those interested in alcoholic fermentation, the system incorporates built-in guardrails to help ensure compliance with local regulations. It provides clear information on legal production limits and any necessary licensing requirements, promoting responsible hobbying.</p>
</div>
</div>
</section>
</main>
<footer class="bg-slate-800 text-slate-300 mt-24">
<div class="container mx-auto px-6 py-8 text-center">
<p>© 2025 FSC Ecosystem Strategic Analysis. All data synthesized from provided reports.</p>
</div>
</footer>
</body>
</html>