apirrone commited on
Commit
68b39e5
·
1 Parent(s): 008afa8

update landing page

Browse files
Files changed (2) hide show
  1. index.html +105 -255
  2. style.css +254 -279
index.html CHANGED
@@ -3,278 +3,128 @@
3
 
4
  <head>
5
  <meta charset="utf-8" />
6
- <meta name="viewport" content="width=device-width" />
7
- <title>Reachy Mini Conversation app</title>
 
 
 
8
  <link rel="stylesheet" href="style.css" />
9
  </head>
10
 
11
  <body>
12
- <div class="hero">
13
- <div class="hero-content">
14
- <div class="app-icon">🤖⚡</div>
15
- <h1>Reachy Mini Conversation app</h1>
16
- <p class="tagline">Conversationalapp for the Reachy Mini robot combining OpenAI's realtime APIs, vision pipelines, and choreographed motion libraries.</p>
17
- </div>
18
- </div>
19
-
20
- <div class="container">
21
- <div class="main-card">
22
- <div class="app-preview">
23
- <div class="preview-image">
24
- <div class="camera-feed">🛠️</div>
25
- </div>
26
  </div>
 
27
  </div>
28
-
29
- <div class="app-details">
30
- <h2>Example Template App</h2>
31
- <div class="template-info">
32
- <div class="info-box">
33
- <h3>🎨 Template Purpose</h3>
34
- <p>This is an example landing page for Reachy Mini apps. Feel free to duplicate this template and
35
- customize it for your own applications!</p>
 
 
36
  </div>
37
- <div class="info-box">
38
- <h3>🚀 Getting Started</h3>
39
- <p>Use this template to showcase your Reachy Mini app with a landing page. Simply modify the
40
- content, add your app's repository URL, and deploy!</p>
 
41
  </div>
42
  </div>
43
-
44
-
45
- <div class="how-to-use">
46
- <h3>How to Use This Template</h3>
47
- <div class="steps">
48
- <div class="step">
49
- <span class="step-number">1</span>
50
- <div>
51
- <h4>Duplicate & Customize</h4>
52
- <p>Copy this template and modify the content for your app</p>
53
- </div>
54
- </div>
55
- <div class="step">
56
- <span class="step-number">2</span>
57
- <div>
58
- <h4>Update Repository URL</h4>
59
- <p>Change the JavaScript to point to your app's Git repository</p>
60
- </div>
61
- </div>
62
- <div class="step">
63
- <span class="step-number">3</span>
64
- <div>
65
- <h4>Deploy to HF Spaces</h4>
66
- <p>Upload your customized version to Hugging Face Spaces</p>
67
- </div>
68
- </div>
69
  </div>
70
  </div>
71
  </div>
72
- </div>
73
-
74
- <div class="download-section">
75
- <div class="download-card">
76
- <h2>Install This App</h2>
77
- <p></p>
78
-
79
- <div class="dashboard-config">
80
- <label for="dashboardUrl">Your Reachy Dashboard URL:</label>
81
- <input type="url" id="dashboardUrl" value="http://localhost:8000"
82
- placeholder="http://your-reachy-ip:8000" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  </div>
84
-
85
- <button id="installBtn" class="install-btn primary">
86
- <span class="btn-icon">📥</span>
87
- Install Conversation App to Reachy Mini
88
- </button>
89
-
90
- <div id="installStatus" class="install-status"></div>
91
-
92
  </div>
93
- </div>
94
 
95
- <div class="footer">
96
  <p>
97
- 🤖 Template for Reachy Mini Apps
98
- <a href="https://github.com/pollen-robotics" target="_blank">Pollen Robotics</a> •
99
- <a href="https://huggingface.co/spaces/pollen-robotics/Reachy_Mini_Apps" target="_blank">Browse More
100
- Apps</a>
101
  </p>
102
- </div>
103
- </div>
104
-
105
- <script>
106
- // Get the current Hugging Face Space URL as the repository URL
107
- function getCurrentSpaceUrl() {
108
- // Get current page URL and convert to repository format
109
- const currentUrl = window.location.href;
110
-
111
- // Remove any trailing slashes and query parameters
112
- const cleanUrl = currentUrl.split('?')[0].replace(/\/$/, '');
113
-
114
- return cleanUrl;
115
- }
116
-
117
- // Parse TOML content to extract project name
118
- function parseTomlProjectName(tomlContent) {
119
- try {
120
- const lines = tomlContent.split('\n');
121
- let inProjectSection = false;
122
-
123
- for (const line of lines) {
124
- const trimmedLine = line.trim();
125
-
126
- // Check if we're entering the [project] section
127
- if (trimmedLine === '[project]') {
128
- inProjectSection = true;
129
- continue;
130
- }
131
-
132
- // Check if we're entering a different section
133
- if (trimmedLine.startsWith('[') && trimmedLine !== '[project]') {
134
- inProjectSection = false;
135
- continue;
136
- }
137
-
138
- // If we're in the project section, look for the name field
139
- if (inProjectSection && trimmedLine.startsWith('name')) {
140
- const match = trimmedLine.match(/name\s*=\s*["']([^"']+)["']/);
141
- if (match) {
142
- // Convert to lowercase and replace invalid characters for app naming
143
- return match[1].toLowerCase().replace(/[^a-z0-9-_]/g, '-');
144
- }
145
- }
146
- }
147
-
148
- throw new Error('Project name not found in pyproject.toml');
149
- } catch (error) {
150
- console.error('Error parsing pyproject.toml:', error);
151
- return 'unknown-app';
152
- }
153
- }
154
-
155
- // Fetch and parse pyproject.toml from the current space
156
- async function getAppNameFromCurrentSpace() {
157
- try {
158
- // Fetch pyproject.toml from the current space
159
- const response = await fetch('./pyproject.toml');
160
- if (!response.ok) {
161
- throw new Error(`Failed to fetch pyproject.toml: ${response.status}`);
162
- }
163
-
164
- const tomlContent = await response.text();
165
- return parseTomlProjectName(tomlContent);
166
- } catch (error) {
167
- console.error('Error fetching app name from current space:', error);
168
- // Fallback to extracting from URL if pyproject.toml is not accessible
169
- const url = getCurrentSpaceUrl();
170
- const parts = url.split('/');
171
- const spaceName = parts[parts.length - 1];
172
- return spaceName.toLowerCase().replace(/[^a-z0-9-_]/g, '-');
173
- }
174
- }
175
-
176
- async function installToReachy() {
177
- const dashboardUrl = document.getElementById('dashboardUrl').value.trim();
178
- const statusDiv = document.getElementById('installStatus');
179
- const installBtn = document.getElementById('installBtn');
180
-
181
- if (!dashboardUrl) {
182
- showStatus('error', 'Please enter your Reachy dashboard URL');
183
- return;
184
- }
185
-
186
- try {
187
- installBtn.disabled = true;
188
- installBtn.innerHTML = '<span class="btn-icon">⏳</span>Installing...';
189
- showStatus('loading', 'Connecting to your Reachy dashboard...');
190
-
191
- // Test connection
192
- const testResponse = await fetch(`${dashboardUrl}/api/status`, {
193
- method: 'GET',
194
- mode: 'cors',
195
- });
196
-
197
- if (!testResponse.ok) {
198
- throw new Error('Cannot connect to dashboard. Make sure the URL is correct and the dashboard is running.');
199
- }
200
-
201
- showStatus('loading', 'Reading app configuration...');
202
-
203
- // Get app name from pyproject.toml in current space
204
- const appName = await getAppNameFromCurrentSpace();
205
-
206
- // Get current space URL as repository URL
207
- const repoUrl = getCurrentSpaceUrl();
208
-
209
- showStatus('loading', `Starting installation of "${appName}"...`);
210
-
211
- // Start installation
212
- const installResponse = await fetch(`${dashboardUrl}/api/install`, {
213
- method: 'POST',
214
- mode: 'cors',
215
- headers: {
216
- 'Content-Type': 'application/json',
217
- },
218
- body: JSON.stringify({
219
- url: repoUrl,
220
- name: appName
221
- })
222
- });
223
-
224
- const result = await installResponse.json();
225
-
226
- if (installResponse.ok) {
227
- showStatus('success', `✅ Installation started for "${appName}"! Check your dashboard for progress.`);
228
- setTimeout(() => {
229
- showStatus('info', `Open your dashboard at ${dashboardUrl} to see the installed app.`);
230
- }, 3000);
231
- } else {
232
- throw new Error(result.detail || 'Installation failed');
233
- }
234
-
235
- } catch (error) {
236
- console.error('Installation error:', error);
237
- showStatus('error', `❌ ${error.message}`);
238
- } finally {
239
- installBtn.disabled = false;
240
- installBtn.innerHTML = '<span class="btn-icon">📥</span>Install App to Reachy';
241
- }
242
- }
243
-
244
- function showStatus(type, message) {
245
- const statusDiv = document.getElementById('installStatus');
246
- statusDiv.className = `install-status ${type}`;
247
- statusDiv.textContent = message;
248
- statusDiv.style.display = 'block';
249
- }
250
-
251
- function copyToClipboard() {
252
- const repoUrl = document.getElementById('repoUrl').textContent;
253
- navigator.clipboard.writeText(repoUrl).then(() => {
254
- showStatus('success', '📋 Repository URL copied to clipboard!');
255
- }).catch(() => {
256
- showStatus('error', 'Failed to copy URL. Please copy manually.');
257
- });
258
- }
259
-
260
- // Update the displayed repository URL on page load
261
- document.addEventListener('DOMContentLoaded', () => {
262
- // Auto-detect local dashboard
263
- const isLocalhost = window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1';
264
- if (isLocalhost) {
265
- document.getElementById('dashboardUrl').value = 'http://localhost:8000';
266
- }
267
-
268
- // Update the repository URL display if element exists
269
- const repoUrlElement = document.getElementById('repoUrl');
270
- if (repoUrlElement) {
271
- repoUrlElement.textContent = getCurrentSpaceUrl();
272
- }
273
- });
274
 
275
- // Event listeners
276
- document.getElementById('installBtn').addEventListener('click', installToReachy);
277
- </script>
278
  </body>
279
 
280
- </html>
 
3
 
4
  <head>
5
  <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <title>Reachy Mini Conversation App</title>
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap" rel="stylesheet">
11
  <link rel="stylesheet" href="style.css" />
12
  </head>
13
 
14
  <body>
15
+ <header class="hero">
16
+ <div class="topline">
17
+ <div class="brand">
18
+ <span class="logo">🤖</span>
19
+ <span class="brand-name">Reachy Mini</span>
 
 
 
 
 
 
 
 
 
20
  </div>
21
+ <div class="pill">Realtime voice · Vision aware · Expressive motion</div>
22
  </div>
23
+ <div class="hero-grid">
24
+ <div class="hero-copy">
25
+ <p class="eyebrow">Conversation App</p>
26
+ <h1>Talk, see, and move together.</h1>
27
+ <p class="lede">
28
+ A friendly, camera-aware companion for Reachy Mini. Chat out loud, watch it follow faces, dance, or react with recorded emotions—all while streaming transcripts in a clean web UI.
29
+ </p>
30
+ <div class="hero-actions">
31
+ <a class="btn primary" href="#highlights">Explore features</a>
32
+ <a class="btn ghost" href="#story">See how it feels</a>
33
  </div>
34
+ <div class="hero-badges">
35
+ <span>Low-latency voice loop</span>
36
+ <span>Camera insights on demand</span>
37
+ <span>Choreographed dances & emotions</span>
38
+ <span>Personality profiles via web UI</span>
39
  </div>
40
  </div>
41
+ <div class="hero-visual">
42
+ <div class="glass-card">
43
+ <img src="docs/assets/reachy_mini_dance.gif" alt="Reachy Mini dancing" class="hero-gif">
44
+ <p class="caption">Reachy Mini can move, dance, and emote while holding a natural conversation.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  </div>
46
  </div>
47
  </div>
48
+ </header>
49
+
50
+ <section id="highlights" class="section features">
51
+ <div class="section-header">
52
+ <p class="eyebrow">What’s inside</p>
53
+ <h2>All-in-one conversational layer for your robot</h2>
54
+ <p class="intro">
55
+ The app blends realtime speech, vision, and motion so Reachy Mini feels present. Use it on hardware or in simulation with the Gradio web interface.
56
+ </p>
57
+ </div>
58
+ <div class="feature-grid">
59
+ <div class="feature-card">
60
+ <span class="icon">🎤</span>
61
+ <h3>Natural voice chat</h3>
62
+ <p>Talk freely and get fast, high-quality replies powered by OpenAI’s realtime models.</p>
63
+ </div>
64
+ <div class="feature-card">
65
+ <span class="icon">🎥</span>
66
+ <h3>Vision-aware replies</h3>
67
+ <p>Ask the camera tool to see what’s in front, track a face, or keep attention on whoever is speaking.</p>
68
+ </div>
69
+ <div class="feature-card">
70
+ <span class="icon">💃</span>
71
+ <h3>Expressive motion</h3>
72
+ <p>Queue dances, play recorded emotions, or add gentle wobble while Reachy listens and talks.</p>
73
+ </div>
74
+ <div class="feature-card">
75
+ <span class="icon">🧠</span>
76
+ <h3>Personalities on demand</h3>
77
+ <p>Switch conversation styles through profiles and decide which tools (dance, camera, tracking) each persona can use.</p>
78
+ </div>
79
+ <div class="feature-card">
80
+ <span class="icon">🖥️</span>
81
+ <h3>Web UI with live transcripts</h3>
82
+ <p>Open the Gradio interface to read the dialogue, toggle tools, and watch responses as they stream.</p>
83
+ </div>
84
+ <div class="feature-card">
85
+ <span class="icon">🌐</span>
86
+ <h3>Ready for your setup</h3>
87
+ <p>Works with wired or wireless Reachy Mini, and can run vision locally or through the default cloud model.</p>
88
+ </div>
89
+ </div>
90
+ </section>
91
+
92
+ <section id="story" class="section story">
93
+ <div class="story-grid">
94
+ <div class="story-card">
95
+ <p class="eyebrow">How it feels</p>
96
+ <h3>From hello to helpful in seconds</h3>
97
+ <ul class="story-list">
98
+ <li><span>👋</span> Say “Hey Reachy” and start chatting—no extra setup in the moment.</li>
99
+ <li><span>👀</span> Ask what it sees; it can peek through the camera or keep focus on your face.</li>
100
+ <li><span>🎭</span> Trigger emotions or dance breaks to keep the conversation lively.</li>
101
+ <li><span>📝</span> Follow along with live transcripts in the web UI or run audio-only from the console.</li>
102
+ </ul>
103
+ </div>
104
+ <div class="story-card secondary">
105
+ <p class="eyebrow">Where it shines</p>
106
+ <h3>Great for demos, teaching, and playful exploration</h3>
107
+ <p class="story-text">
108
+ Show off how Reachy Mini listens, responds, and moves in sync. Whether you’re guiding a class, hosting a booth, or experimenting at home, the app keeps the robot expressive without juggling scripts or joystick controls.
109
+ </p>
110
+ <div class="chips">
111
+ <span class="chip">Live conversation</span>
112
+ <span class="chip">Face tracking</span>
113
+ <span class="chip">Camera tool</span>
114
+ <span class="chip">Dance library</span>
115
+ <span class="chip">Profiles & tools</span>
116
+ </div>
117
  </div>
 
 
 
 
 
 
 
 
118
  </div>
119
+ </section>
120
 
121
+ <footer class="footer">
122
  <p>
123
+ Reachy Mini Conversation App by <a href="https://github.com/pollen-robotics" target="_blank" rel="noopener">Pollen Robotics</a>.
124
+ Explore more apps on <a href="https://huggingface.co/spaces/pollen-robotics/Reachy_Mini_Apps" target="_blank" rel="noopener">Hugging Face Spaces</a>.
 
 
125
  </p>
126
+ </footer>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
 
 
 
 
128
  </body>
129
 
130
+ </html>
style.css CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  * {
2
  margin: 0;
3
  padding: 0;
@@ -5,407 +19,368 @@
5
  }
6
 
7
  body {
8
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
9
- line-height: 1.6;
10
- color: #333;
11
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 
12
  min-height: 100vh;
 
 
13
  }
14
 
15
- .hero {
16
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
17
- color: white;
18
- padding: 4rem 2rem;
19
- text-align: center;
20
  }
21
 
22
- .hero-content {
23
- max-width: 800px;
24
- margin: 0 auto;
 
25
  }
26
 
27
- .app-icon {
28
- font-size: 4rem;
29
- margin-bottom: 1rem;
30
- display: inline-block;
 
 
31
  }
32
 
33
- .hero h1 {
34
- font-size: 3rem;
35
- font-weight: 700;
36
- margin-bottom: 1rem;
37
- background: linear-gradient(45deg, #fff, #f0f9ff);
38
- background-clip: text;
39
- -webkit-background-clip: text;
40
- -webkit-text-fill-color: transparent;
41
  }
42
 
43
- .tagline {
44
- font-size: 1.25rem;
45
- opacity: 0.9;
46
- max-width: 600px;
47
- margin: 0 auto;
 
 
48
  }
49
 
50
- .container {
51
- max-width: 1200px;
52
- margin: 0 auto;
53
- padding: 0 2rem;
54
- position: relative;
55
- z-index: 2;
 
 
 
56
  }
57
 
58
- .main-card {
59
- background: white;
60
- border-radius: 20px;
61
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
62
- margin-top: -2rem;
63
- overflow: hidden;
64
- margin-bottom: 3rem;
65
  }
66
 
67
- .app-preview {
68
- background: linear-gradient(135deg, #1e3a8a, #3b82f6);
69
- padding: 3rem;
70
- color: white;
71
- text-align: center;
72
- position: relative;
 
 
73
  }
74
 
75
- .preview-image {
76
- background: #000;
77
- border-radius: 15px;
78
- padding: 2rem;
79
- max-width: 500px;
80
  margin: 0 auto;
81
  position: relative;
82
- overflow: hidden;
 
83
  }
84
 
85
- .camera-feed {
86
- font-size: 4rem;
87
  margin-bottom: 1rem;
88
- opacity: 0.7;
 
89
  }
90
 
91
- .detection-overlay {
92
- position: absolute;
93
- top: 50%;
94
- left: 50%;
95
- transform: translate(-50%, -50%);
96
- width: 100%;
 
 
 
97
  }
98
 
99
- .bbox {
100
- background: rgba(34, 197, 94, 0.9);
101
- color: white;
102
- padding: 0.5rem 1rem;
103
- border-radius: 8px;
104
- font-size: 0.9rem;
105
- font-weight: 600;
106
- margin: 0.5rem;
107
  display: inline-block;
108
- border: 2px solid #22c55e;
109
- }
110
-
111
- .app-details {
112
- padding: 3rem;
113
  }
114
 
115
- .app-details h2 {
116
- font-size: 2rem;
117
- color: #1e293b;
118
- margin-bottom: 2rem;
119
- text-align: center;
120
  }
121
 
122
- .template-info {
123
- display: grid;
124
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
125
- gap: 2rem;
126
- margin-bottom: 3rem;
 
127
  }
128
 
129
- .info-box {
130
- background: #f0f9ff;
131
- border: 2px solid #e0f2fe;
 
 
 
132
  border-radius: 12px;
133
- padding: 2rem;
134
- }
135
-
136
- .info-box h3 {
137
- color: #0c4a6e;
138
- margin-bottom: 1rem;
139
- font-size: 1.2rem;
140
  }
141
 
142
- .info-box p {
143
- color: #0369a1;
144
- line-height: 1.6;
 
145
  }
146
 
147
- .how-to-use {
148
- background: #fefce8;
149
- border: 2px solid #fde047;
150
- border-radius: 12px;
151
- padding: 2rem;
152
- margin-top: 3rem;
153
  }
154
 
155
- .how-to-use h3 {
156
- color: #a16207;
157
- margin-bottom: 1.5rem;
158
- font-size: 1.3rem;
159
- text-align: center;
160
  }
161
 
162
- .steps {
163
- display: flex;
164
- flex-direction: column;
165
- gap: 1.5rem;
166
  }
167
 
168
- .step {
169
- display: flex;
170
- align-items: flex-start;
171
- gap: 1rem;
172
  }
173
 
174
- .step-number {
175
- background: #eab308;
176
- color: white;
177
- width: 2rem;
178
- height: 2rem;
179
- border-radius: 50%;
180
  display: flex;
181
- align-items: center;
182
- justify-content: center;
183
- font-weight: bold;
184
- flex-shrink: 0;
185
  }
186
 
187
- .step h4 {
188
- color: #a16207;
189
- margin-bottom: 0.5rem;
190
- font-size: 1.1rem;
 
191
  }
192
 
193
- .step p {
194
- color: #ca8a04;
 
 
 
 
 
195
  }
196
 
197
- .download-card {
198
- background: white;
199
- border-radius: 20px;
200
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
201
- padding: 3rem;
202
- text-align: center;
203
  }
204
 
205
- .download-card h2 {
206
- font-size: 2rem;
207
- color: #1e293b;
208
- margin-bottom: 1rem;
209
  }
210
 
211
- .download-card>p {
212
- color: #64748b;
213
- font-size: 1.1rem;
214
- margin-bottom: 2rem;
215
  }
216
 
217
- .dashboard-config {
218
- margin-bottom: 2rem;
219
- text-align: left;
220
- max-width: 400px;
221
- margin-left: auto;
222
- margin-right: auto;
223
  }
224
 
225
- .dashboard-config label {
226
- display: block;
227
- color: #374151;
228
- font-weight: 600;
229
  margin-bottom: 0.5rem;
230
  }
231
 
232
- .dashboard-config input {
233
- width: 100%;
234
- padding: 0.75rem 1rem;
235
- border: 2px solid #e5e7eb;
236
- border-radius: 8px;
237
- font-size: 0.95rem;
238
- transition: border-color 0.2s;
239
  }
240
 
241
- .dashboard-config input:focus {
242
- outline: none;
243
- border-color: #667eea;
 
244
  }
245
 
246
- .install-btn {
247
- background: linear-gradient(135deg, #667eea, #764ba2);
248
- color: white;
249
- border: none;
250
- padding: 1.25rem 3rem;
251
  border-radius: 16px;
252
- font-size: 1.2rem;
253
- font-weight: 700;
254
- cursor: pointer;
255
- transition: all 0.3s ease;
256
- display: inline-flex;
257
- align-items: center;
258
- gap: 0.75rem;
259
- margin-bottom: 2rem;
260
- box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
261
  }
262
 
263
- .install-btn:hover:not(:disabled) {
264
- transform: translateY(-3px);
265
- box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
 
266
  }
267
 
268
- .install-btn:disabled {
269
- opacity: 0.7;
270
- cursor: not-allowed;
271
- transform: none;
272
- }
273
-
274
- .manual-option {
275
- background: #f8fafc;
276
  border-radius: 12px;
277
- padding: 2rem;
278
- margin-top: 2rem;
 
 
 
279
  }
280
 
281
- .manual-option h3 {
282
- color: #1e293b;
283
- margin-bottom: 1rem;
284
- font-size: 1.2rem;
285
  }
286
 
287
- .manual-option>p {
288
- color: #64748b;
289
- margin-bottom: 1rem;
290
  }
291
 
292
- .btn-icon {
293
- font-size: 1.1rem;
294
  }
295
 
296
- .install-status {
297
- padding: 1rem;
298
- border-radius: 8px;
299
- font-size: 0.9rem;
300
- text-align: center;
301
- display: none;
302
- margin-top: 1rem;
303
  }
304
 
305
- .install-status.success {
306
- background: #dcfce7;
307
- color: #166534;
308
- border: 1px solid #bbf7d0;
 
 
309
  }
310
 
311
- .install-status.error {
312
- background: #fef2f2;
313
- color: #dc2626;
314
- border: 1px solid #fecaca;
315
  }
316
 
317
- .install-status.loading {
318
- background: #dbeafe;
319
- color: #1d4ed8;
320
- border: 1px solid #bfdbfe;
321
  }
322
 
323
- .install-status.info {
324
- background: #e0f2fe;
325
- color: #0369a1;
326
- border: 1px solid #7dd3fc;
 
 
327
  }
328
 
329
- .manual-install {
330
- background: #1f2937;
331
- border-radius: 8px;
332
- padding: 1rem;
333
- margin-bottom: 1rem;
334
  display: flex;
335
- align-items: center;
336
- gap: 1rem;
337
- }
338
-
339
- .manual-install code {
340
- color: #10b981;
341
- font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
342
- font-size: 0.85rem;
343
- flex: 1;
344
- overflow-x: auto;
345
  }
346
 
347
- .copy-btn {
348
- background: #374151;
349
- color: white;
350
- border: none;
351
- padding: 0.5rem 1rem;
352
- border-radius: 6px;
353
- font-size: 0.8rem;
354
- cursor: pointer;
355
- transition: background-color 0.2s;
356
  }
357
 
358
- .copy-btn:hover {
359
- background: #4b5563;
 
 
360
  }
361
 
362
- .manual-steps {
363
- color: #6b7280;
 
 
 
 
364
  font-size: 0.9rem;
365
- line-height: 1.8;
366
  }
367
 
368
  .footer {
369
  text-align: center;
370
- padding: 2rem;
371
- color: white;
372
- opacity: 0.8;
373
  }
374
 
375
  .footer a {
376
- color: white;
377
- text-decoration: none;
378
- font-weight: 600;
379
  }
380
 
381
  .footer a:hover {
382
- text-decoration: underline;
383
  }
384
 
385
- /* Responsive Design */
386
  @media (max-width: 768px) {
387
  .hero {
388
- padding: 2rem 1rem;
389
  }
390
 
391
- .hero h1 {
392
- font-size: 2rem;
 
 
393
  }
394
 
395
- .container {
396
- padding: 0 1rem;
397
  }
398
 
399
- .app-details,
400
- .download-card {
401
- padding: 2rem;
402
  }
403
 
404
- .features-grid {
405
- grid-template-columns: 1fr;
406
  }
407
-
408
- .download-options {
409
- grid-template-columns: 1fr;
410
- }
411
- }
 
1
+ :root {
2
+ --bg: #060c1d;
3
+ --panel: #0c172b;
4
+ --glass: rgba(17, 27, 48, 0.7);
5
+ --card: rgba(255, 255, 255, 0.04);
6
+ --accent: #7af5c4;
7
+ --accent-2: #f6c452;
8
+ --text: #e8edf7;
9
+ --muted: #9fb3ce;
10
+ --border: rgba(255, 255, 255, 0.08);
11
+ --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
12
+ font-family: "Space Grotesk", "Manrope", system-ui, -apple-system, sans-serif;
13
+ }
14
+
15
  * {
16
  margin: 0;
17
  padding: 0;
 
19
  }
20
 
21
  body {
22
+ background: radial-gradient(circle at 20% 20%, rgba(122, 245, 196, 0.12), transparent 30%),
23
+ radial-gradient(circle at 80% 0%, rgba(246, 196, 82, 0.14), transparent 32%),
24
+ radial-gradient(circle at 50% 70%, rgba(124, 142, 255, 0.1), transparent 30%),
25
+ var(--bg);
26
+ color: var(--text);
27
  min-height: 100vh;
28
+ line-height: 1.6;
29
+ padding-bottom: 3rem;
30
  }
31
 
32
+ a {
33
+ color: inherit;
34
+ text-decoration: none;
 
 
35
  }
36
 
37
+ .hero {
38
+ padding: 3.5rem clamp(1.5rem, 3vw, 3rem) 2.5rem;
39
+ position: relative;
40
+ overflow: hidden;
41
  }
42
 
43
+ .hero::after {
44
+ content: "";
45
+ position: absolute;
46
+ inset: 0;
47
+ background: linear-gradient(120deg, rgba(122, 245, 196, 0.12), rgba(246, 196, 82, 0.08), transparent);
48
+ pointer-events: none;
49
  }
50
 
51
+ .topline {
52
+ display: flex;
53
+ align-items: center;
54
+ justify-content: space-between;
55
+ max-width: 1200px;
56
+ margin: 0 auto 2rem;
57
+ position: relative;
58
+ z-index: 2;
59
  }
60
 
61
+ .brand {
62
+ display: flex;
63
+ align-items: center;
64
+ gap: 0.5rem;
65
+ font-weight: 700;
66
+ letter-spacing: 0.5px;
67
+ color: var(--text);
68
  }
69
 
70
+ .logo {
71
+ display: inline-flex;
72
+ align-items: center;
73
+ justify-content: center;
74
+ width: 2.2rem;
75
+ height: 2.2rem;
76
+ border-radius: 10px;
77
+ background: linear-gradient(145deg, rgba(122, 245, 196, 0.15), rgba(124, 142, 255, 0.15));
78
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
79
  }
80
 
81
+ .brand-name {
82
+ font-size: 1.1rem;
 
 
 
 
 
83
  }
84
 
85
+ .pill {
86
+ background: rgba(255, 255, 255, 0.06);
87
+ border: 1px solid var(--border);
88
+ padding: 0.6rem 1rem;
89
+ border-radius: 999px;
90
+ color: var(--muted);
91
+ font-size: 0.9rem;
92
+ box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
93
  }
94
 
95
+ .hero-grid {
96
+ display: grid;
97
+ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
98
+ gap: clamp(1.5rem, 2.5vw, 2.5rem);
99
+ max-width: 1200px;
100
  margin: 0 auto;
101
  position: relative;
102
+ z-index: 2;
103
+ align-items: center;
104
  }
105
 
106
+ .hero-copy h1 {
107
+ font-size: clamp(2.6rem, 4vw, 3.6rem);
108
  margin-bottom: 1rem;
109
+ line-height: 1.1;
110
+ letter-spacing: -0.5px;
111
  }
112
 
113
+ .eyebrow {
114
+ display: inline-flex;
115
+ align-items: center;
116
+ gap: 0.5rem;
117
+ text-transform: uppercase;
118
+ letter-spacing: 1px;
119
+ font-size: 0.8rem;
120
+ color: var(--muted);
121
+ margin-bottom: 0.75rem;
122
  }
123
 
124
+ .eyebrow::before {
125
+ content: "";
 
 
 
 
 
 
126
  display: inline-block;
127
+ width: 24px;
128
+ height: 2px;
129
+ background: linear-gradient(90deg, var(--accent), var(--accent-2));
130
+ border-radius: 999px;
 
131
  }
132
 
133
+ .lede {
134
+ font-size: 1.1rem;
135
+ color: var(--muted);
136
+ max-width: 620px;
 
137
  }
138
 
139
+ .hero-actions {
140
+ display: flex;
141
+ gap: 1rem;
142
+ align-items: center;
143
+ margin: 1.6rem 0 1.2rem;
144
+ flex-wrap: wrap;
145
  }
146
 
147
+ .btn {
148
+ display: inline-flex;
149
+ align-items: center;
150
+ justify-content: center;
151
+ gap: 0.6rem;
152
+ padding: 0.85rem 1.4rem;
153
  border-radius: 12px;
154
+ font-weight: 700;
155
+ border: 1px solid transparent;
156
+ cursor: pointer;
157
+ transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
 
 
 
158
  }
159
 
160
+ .btn.primary {
161
+ background: linear-gradient(135deg, #7af5c4, #7c8eff);
162
+ color: #0a0f1f;
163
+ box-shadow: 0 15px 30px rgba(122, 245, 196, 0.25);
164
  }
165
 
166
+ .btn.primary:hover {
167
+ transform: translateY(-2px);
168
+ box-shadow: 0 25px 45px rgba(122, 245, 196, 0.35);
 
 
 
169
  }
170
 
171
+ .btn.ghost {
172
+ background: rgba(255, 255, 255, 0.05);
173
+ border-color: var(--border);
174
+ color: var(--text);
 
175
  }
176
 
177
+ .btn.ghost:hover {
178
+ border-color: rgba(255, 255, 255, 0.3);
179
+ transform: translateY(-2px);
 
180
  }
181
 
182
+ .btn.wide {
183
+ width: 100%;
184
+ justify-content: center;
 
185
  }
186
 
187
+ .hero-badges {
 
 
 
 
 
188
  display: flex;
189
+ flex-wrap: wrap;
190
+ gap: 0.6rem;
191
+ color: var(--muted);
192
+ font-size: 0.9rem;
193
  }
194
 
195
+ .hero-badges span {
196
+ padding: 0.5rem 0.8rem;
197
+ border-radius: 10px;
198
+ border: 1px solid var(--border);
199
+ background: rgba(255, 255, 255, 0.04);
200
  }
201
 
202
+ .hero-visual .glass-card {
203
+ background: rgba(255, 255, 255, 0.03);
204
+ border: 1px solid var(--border);
205
+ border-radius: 18px;
206
+ padding: 1.2rem;
207
+ box-shadow: var(--shadow);
208
+ backdrop-filter: blur(10px);
209
  }
210
 
211
+ .hero-gif {
212
+ width: 100%;
213
+ display: block;
214
+ border-radius: 14px;
215
+ border: 1px solid var(--border);
216
+ box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
217
  }
218
 
219
+ .caption {
220
+ margin-top: 0.75rem;
221
+ color: var(--muted);
222
+ font-size: 0.95rem;
223
  }
224
 
225
+ .section {
226
+ max-width: 1200px;
227
+ margin: 0 auto;
228
+ padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
229
  }
230
 
231
+ .section-header {
232
+ text-align: center;
233
+ max-width: 780px;
234
+ margin: 0 auto 2rem;
 
 
235
  }
236
 
237
+ .section-header h2 {
238
+ font-size: clamp(2rem, 3vw, 2.6rem);
 
 
239
  margin-bottom: 0.5rem;
240
  }
241
 
242
+ .intro {
243
+ color: var(--muted);
244
+ font-size: 1.05rem;
 
 
 
 
245
  }
246
 
247
+ .feature-grid {
248
+ display: grid;
249
+ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
250
+ gap: 1rem;
251
  }
252
 
253
+ .feature-card {
254
+ background: rgba(255, 255, 255, 0.03);
255
+ border: 1px solid var(--border);
 
 
256
  border-radius: 16px;
257
+ padding: 1.25rem;
258
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
259
+ transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
 
 
 
 
 
 
260
  }
261
 
262
+ .feature-card:hover {
263
+ transform: translateY(-4px);
264
+ border-color: rgba(122, 245, 196, 0.3);
265
+ box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
266
  }
267
 
268
+ .feature-card .icon {
269
+ width: 48px;
270
+ height: 48px;
 
 
 
 
 
271
  border-radius: 12px;
272
+ display: grid;
273
+ place-items: center;
274
+ background: rgba(122, 245, 196, 0.14);
275
+ margin-bottom: 0.8rem;
276
+ font-size: 1.4rem;
277
  }
278
 
279
+ .feature-card h3 {
280
+ margin-bottom: 0.35rem;
 
 
281
  }
282
 
283
+ .feature-card p {
284
+ color: var(--muted);
 
285
  }
286
 
287
+ .story {
288
+ padding-top: 1rem;
289
  }
290
 
291
+ .story-grid {
292
+ display: grid;
293
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
294
+ gap: 1rem;
 
 
 
295
  }
296
 
297
+ .story-card {
298
+ background: rgba(255, 255, 255, 0.03);
299
+ border: 1px solid var(--border);
300
+ border-radius: 18px;
301
+ padding: 1.5rem;
302
+ box-shadow: var(--shadow);
303
  }
304
 
305
+ .story-card.secondary {
306
+ background: linear-gradient(145deg, rgba(124, 142, 255, 0.08), rgba(122, 245, 196, 0.06));
 
 
307
  }
308
 
309
+ .story-card h3 {
310
+ margin-bottom: 0.8rem;
 
 
311
  }
312
 
313
+ .story-list {
314
+ list-style: none;
315
+ display: grid;
316
+ gap: 0.7rem;
317
+ color: var(--muted);
318
+ font-size: 0.98rem;
319
  }
320
 
321
+ .story-list li {
 
 
 
 
322
  display: flex;
323
+ gap: 0.7rem;
324
+ align-items: flex-start;
 
 
 
 
 
 
 
 
325
  }
326
 
327
+ .story-text {
328
+ color: var(--muted);
329
+ line-height: 1.7;
330
+ margin-bottom: 1rem;
 
 
 
 
 
331
  }
332
 
333
+ .chips {
334
+ display: flex;
335
+ flex-wrap: wrap;
336
+ gap: 0.5rem;
337
  }
338
 
339
+ .chip {
340
+ padding: 0.45rem 0.8rem;
341
+ border-radius: 12px;
342
+ background: rgba(0, 0, 0, 0.2);
343
+ border: 1px solid var(--border);
344
+ color: var(--text);
345
  font-size: 0.9rem;
 
346
  }
347
 
348
  .footer {
349
  text-align: center;
350
+ color: var(--muted);
351
+ padding: 2rem 1.5rem 0;
 
352
  }
353
 
354
  .footer a {
355
+ color: var(--text);
356
+ border-bottom: 1px solid transparent;
 
357
  }
358
 
359
  .footer a:hover {
360
+ border-color: rgba(255, 255, 255, 0.5);
361
  }
362
 
 
363
  @media (max-width: 768px) {
364
  .hero {
365
+ padding-top: 2.5rem;
366
  }
367
 
368
+ .topline {
369
+ flex-direction: column;
370
+ gap: 0.8rem;
371
+ align-items: flex-start;
372
  }
373
 
374
+ .hero-actions {
375
+ width: 100%;
376
  }
377
 
378
+ .btn {
379
+ width: 100%;
380
+ justify-content: center;
381
  }
382
 
383
+ .hero-badges {
384
+ gap: 0.4rem;
385
  }
386
+ }