-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
211 lines (181 loc) · 6.87 KB
/
index.html
File metadata and controls
211 lines (181 loc) · 6.87 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Helmstack — Take helm of your trading stack</title>
<meta name="description" content="The AI-first desktop for traders. Connects your broker, charts, data feeds, and screens to any AI assistant — so your AI doesn't just answer questions, it runs your workflow.">
<meta name="robots" content="noindex,nofollow">
<!-- Social preview (Open Graph + Twitter card) -->
<meta property="og:title" content="Helmstack — Take helm of your trading stack">
<meta property="og:description" content="The AI-first desktop for traders. Connects your broker, charts, data, and screens to any AI assistant.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://helmstack.app">
<meta name="twitter:card" content="summary_large_image">
<!-- Inline SVG favicon (ship's wheel) -->
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='36' fill='none' stroke='%231F6FEB' stroke-width='4'/><circle cx='50' cy='50' r='8' fill='%231F6FEB'/><g stroke='%231F6FEB' stroke-width='4' stroke-linecap='round'><line x1='50' y1='50' x2='86' y2='50'/><line x1='50' y1='50' x2='14' y2='50'/><line x1='50' y1='50' x2='50' y2='86'/><line x1='50' y1='50' x2='50' y2='14'/><line x1='50' y1='50' x2='75.46' y2='75.46'/><line x1='50' y1='50' x2='24.54' y2='24.54'/><line x1='50' y1='50' x2='75.46' y2='24.54'/><line x1='50' y1='50' x2='24.54' y2='75.46'/></g><g fill='%231F6FEB'><circle cx='93' cy='50' r='4'/><circle cx='7' cy='50' r='4'/><circle cx='50' cy='93' r='4'/><circle cx='50' cy='7' r='4'/><circle cx='80.41' cy='80.41' r='4'/><circle cx='19.59' cy='19.59' r='4'/><circle cx='80.41' cy='19.59' r='4'/><circle cx='19.59' cy='80.41' r='4'/></g></svg>">
<style>
:root {
--paper: #F8F6F1;
--navy: #0B1929;
--blue: #1F6FEB;
--brass: #C9A55C;
--muted: #6B7280;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
font-family: 'Inter', 'Segoe UI Variable', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
background: var(--paper);
color: var(--navy);
min-height: 100vh;
display: grid;
place-items: center;
padding: 2rem 1.5rem 5rem;
line-height: 1.55;
}
main {
max-width: 560px;
text-align: center;
}
.wheel {
width: 96px;
height: 96px;
margin: 0 auto 2rem;
display: block;
}
.brass-line {
width: 64px;
height: 1px;
background: var(--brass);
margin: 0 auto 2rem;
}
h1 {
font-size: clamp(2.5rem, 6vw, 3.25rem);
font-weight: 700;
letter-spacing: -0.025em;
margin-bottom: 0.5rem;
color: var(--navy);
}
.tagline {
font-size: clamp(1.125rem, 2.5vw, 1.375rem);
color: var(--navy);
margin-bottom: 2.5rem;
font-weight: 400;
}
.description {
color: var(--muted);
margin-bottom: 2.5rem;
max-width: 480px;
margin-left: auto;
margin-right: auto;
font-size: 1rem;
}
.cta {
display: inline-block;
padding: 0.875rem 2rem;
background: var(--blue);
color: white;
text-decoration: none;
border-radius: 0.5rem;
font-weight: 500;
font-size: 1rem;
transition: transform 0.15s ease, box-shadow 0.15s ease;
will-change: transform;
}
.cta:hover,
.cta:focus-visible {
transform: translateY(-1px);
box-shadow: 0 8px 16px -4px rgba(31, 111, 235, 0.35);
outline: none;
}
.status {
margin-top: 1.25rem;
font-size: 0.875rem;
color: var(--muted);
}
.status .dot {
display: inline-block;
width: 6px;
height: 6px;
background: var(--brass);
border-radius: 50%;
margin-right: 0.5rem;
vertical-align: middle;
}
footer {
position: fixed;
bottom: 1.25rem;
left: 0;
right: 0;
text-align: center;
font-size: 0.8125rem;
color: var(--muted);
}
footer a {
color: var(--muted);
text-decoration: none;
border-bottom: 1px solid transparent;
transition: border-color 0.15s ease;
}
footer a:hover,
footer a:focus-visible {
border-bottom-color: var(--muted);
outline: none;
}
.sep {
margin: 0 0.6rem;
color: var(--brass);
opacity: 0.5;
}
</style>
</head>
<body>
<main>
<svg class="wheel" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-label="Helmstack ship's wheel mark" role="img">
<!-- Outer rim -->
<circle cx="50" cy="50" r="36" fill="none" stroke="#1F6FEB" stroke-width="2.4" stroke-linecap="round"/>
<!-- 8 spokes from centre to rim (every 45°) -->
<g stroke="#1F6FEB" stroke-width="2.4" stroke-linecap="round">
<line x1="50" y1="50" x2="86" y2="50"/>
<line x1="50" y1="50" x2="75.46" y2="75.46"/>
<line x1="50" y1="50" x2="50" y2="86"/>
<line x1="50" y1="50" x2="24.54" y2="75.46"/>
<line x1="50" y1="50" x2="14" y2="50"/>
<line x1="50" y1="50" x2="24.54" y2="24.54"/>
<line x1="50" y1="50" x2="50" y2="14"/>
<line x1="50" y1="50" x2="75.46" y2="24.54"/>
</g>
<!-- 8 handle pegs outside the rim (the ship's-wheel tell) -->
<g fill="#1F6FEB">
<circle cx="93" cy="50" r="3"/>
<circle cx="80.41" cy="80.41" r="3"/>
<circle cx="50" cy="93" r="3"/>
<circle cx="19.59" cy="80.41" r="3"/>
<circle cx="7" cy="50" r="3"/>
<circle cx="19.59" cy="19.59" r="3"/>
<circle cx="50" cy="7" r="3"/>
<circle cx="80.41" cy="19.59" r="3"/>
</g>
<!-- Central hub -->
<circle cx="50" cy="50" r="6" fill="#1F6FEB"/>
</svg>
<div class="brass-line" aria-hidden="true"></div>
<h1>Helmstack</h1>
<p class="tagline">Take helm of your trading stack.</p>
<p class="description">
The AI-first desktop for traders. Connects your broker, charts, data feeds, and screens to any AI assistant — so your AI doesn't just answer questions, it runs your workflow.
</p>
<a class="cta" href="mailto:hello@helmstack.app?subject=Helmstack%20%E2%80%94%20Request%20access&body=Hi%2C%0A%0AI%27d%20like%20access%20to%20the%20Helmstack%20beta.%20Here%27s%20a%20bit%20about%20how%20I%20trade%3A%0A%0A%0A%0AThanks.">Request access</a>
<p class="status"><span class="dot" aria-hidden="true"></span>Currently invite-only</p>
</main>
<footer>
<a href="mailto:hello@helmstack.app">hello@helmstack.app</a>
<span class="sep">·</span>
<span>© Helmstack 2026</span>
</footer>
</body>
</html>