-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
252 lines (234 loc) · 11.6 KB
/
Copy pathstyles.css
File metadata and controls
252 lines (234 loc) · 11.6 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
:root {
--green: #21CE76;
--green-lt: #5FE19A;
--green-dk: #16A34A;
--bg: #060B08;
--bg-2: #091009;
--panel: #0D160F;
--card: #0E1712;
--line: rgba(255,255,255,0.08);
--line-2: rgba(255,255,255,0.14);
--white: #F4FBF7;
--text: #DCE9E1;
--muted: #8CA89A;
--muted-2: #5E7367;
--radius: 18px;
--maxw: 1160px;
--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
--font-round: ui-rounded, "SF Pro Rounded", var(--font);
--shadow-lg: 0 40px 90px rgba(0,0,0,0.55);
--shadow-md: 0 16px 40px rgba(0,0,0,0.40);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font);
color: var(--text);
background: var(--bg);
line-height: 1.65;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-round); letter-spacing: -0.02em; line-height: 1.08; color: var(--white); text-wrap: balance; }
a { color: var(--green-lt); text-decoration: none; }
a:hover { text-decoration: underline; }
img, video { max-width: 100%; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--green); color: #04120a; padding: 8px 14px; border-radius: 8px; z-index: 50; }
.skip-link:focus { left: 12px; }
code {
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
background: rgba(33, 206, 118, 0.14);
color: var(--green-lt);
padding: 0.1em 0.42em;
border-radius: 6px;
font-size: 0.88em;
}
.eyebrow {
display: inline-block; text-transform: uppercase; letter-spacing: 0.15em;
font-size: 0.76rem; font-weight: 700; color: var(--green); margin-bottom: 14px;
}
/* ---------- Header ---------- */
.site-header {
position: sticky; top: 0; z-index: 20;
display: flex; align-items: center; justify-content: space-between;
padding: 12px 26px;
background: rgba(6, 11, 8, 0.72);
backdrop-filter: saturate(160%) blur(14px);
-webkit-backdrop-filter: saturate(160%) blur(14px);
border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 800; font-size: 1.12rem; font-family: var(--font-round); }
.brand img { border-radius: 8px; }
.site-header nav { display: flex; align-items: center; gap: 4px; }
.site-header nav a { color: var(--muted); padding: 8px 13px; border-radius: 10px; font-weight: 550; font-size: 0.95rem; }
.site-header nav a:hover { color: var(--white); text-decoration: none; }
.nav-support { background: var(--green); color: #04120a !important; font-weight: 700 !important; }
.nav-support:hover { background: var(--green-lt); }
/* ---------- Hero ---------- */
.hero {
position: relative;
padding: 84px 26px 70px;
text-align: center;
background:
radial-gradient(760px 520px at 50% -6%, rgba(33, 206, 118, 0.22), transparent 60%),
radial-gradient(900px 600px at 50% 120%, rgba(33, 206, 118, 0.10), transparent 60%),
var(--bg);
}
.hero-copy { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.pills { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; justify-content: center; }
.pill {
font-size: 0.8rem; font-weight: 600; padding: 5px 13px; border-radius: 999px;
background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--line-2);
}
.pill-price { background: var(--green); color: #04120a; border-color: transparent; font-weight: 700; }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 4.5rem); margin: 0 0 14px; }
.tagline { font-size: clamp(1.15rem, 2.6vw, 1.5rem); color: var(--green-lt); font-weight: 650; margin: 0 0 18px; }
.subhead { font-size: 1.12rem; color: var(--muted); margin: 0 0 30px; max-width: 560px; }
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.micro { margin-top: 18px; color: var(--muted-2); font-size: 0.9rem; }
/* Hero video — its own dark backdrop blends into the page so the phone appears to float */
.hero-video {
margin: 46px auto 0; max-width: 1040px;
}
.hero-video video {
display: block; width: 100%; height: auto; border-radius: 20px;
}
.hero-video .hv-tall { display: none; } /* portrait cut, shown only on mobile (below) */
/* ---------- App Store badge ---------- */
.appstore-badge {
display: inline-flex; align-items: center; gap: 12px;
background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.18);
padding: 12px 22px; border-radius: 14px; cursor: default; user-select: none;
box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.appstore-badge .badge-text { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.appstore-badge small { font-size: 0.7rem; opacity: 0.82; }
.appstore-badge strong { font-size: 1.22rem; font-weight: 600; }
/* Launch-state toggle (flip <html data-launch> between "soon" and "live"). */
[data-launch="soon"] .badge-live { display: none; }
[data-launch="live"] .badge-soon { display: none; }
a.appstore-badge { text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
a.appstore-badge:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.45); }
a.appstore-badge:focus-visible { outline: 2px solid #21CE76; outline-offset: 3px; }
/* ---------- Phone frame ---------- */
.phone {
width: min(290px, 74vw);
background: #0b0d0c;
padding: 8px;
border-radius: 42px;
border: 1px solid var(--line-2);
box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,0.05);
}
.phone img { display: block; width: 100%; height: auto; border-radius: 34px; }
/* ---------- Use case ---------- */
.usecase { background: var(--bg-2); border-top: 1px solid var(--line); }
.usecase-inner {
max-width: var(--maxw); margin: 0 auto; padding: 96px 26px;
display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.usecase h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin: 0 0 20px; }
.usecase p { color: var(--muted); font-size: 1.08rem; margin: 0 0 16px; }
.usecase .lead { color: var(--text); }
.usecase .punch { font-size: 1.18rem; font-weight: 650; color: var(--white); margin-top: 8px; }
.usecase-visual { position: relative; display: flex; justify-content: center; }
.usecase-visual::before {
content: ""; position: absolute; width: 116%; height: 80%; top: 10%; left: -8%;
background: radial-gradient(closest-side, rgba(33,206,118,0.22), transparent 70%); filter: blur(20px); z-index: 0;
}
.usecase-visual .phone { position: relative; z-index: 1; }
/* ---------- Sections ---------- */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0; }
.features { max-width: var(--maxw); margin: 0 auto; padding: 96px 26px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card {
background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(33,206,118,0.4); }
.card .ico {
font-size: 1.4rem; width: 50px; height: 50px; display: grid; place-items: center;
background: rgba(33,206,118,0.12); border: 1px solid rgba(33,206,118,0.18);
border-radius: 14px; margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 1.14rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
/* ---------- Screens gallery ---------- */
.screens { background: var(--bg-2); border-top: 1px solid var(--line); padding: 96px 0; }
.screens .section-head { padding: 0 26px; }
.gallery {
display: flex; gap: 34px; overflow-x: auto; padding: 8px 26px 30px;
scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.gallery figure { margin: 0; scroll-snap-align: center; flex: 0 0 auto; text-align: center; }
.gallery figcaption { margin-top: 18px; font-weight: 600; color: var(--muted); font-size: 0.98rem; }
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 999px; }
/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; padding: 96px 26px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq details {
background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px;
}
.faq summary {
cursor: pointer; list-style: none; padding: 16px 0; font-weight: 650; color: var(--white);
display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 1.4rem; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--muted); }
/* ---------- Legal / long-form ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 72px 26px 96px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin: 0 0 8px; }
.legal-updated { color: var(--muted-2); font-size: 0.9rem; margin: 0 0 28px; }
.legal-lead { font-size: 1.16rem; color: var(--text); margin: 0 0 8px; }
.legal h2 { font-size: 1.28rem; margin: 36px 0 10px; }
.legal p { color: var(--muted); margin: 0 0 14px; }
.legal a { color: var(--green-lt); }
/* ---------- Closing ---------- */
.closing {
text-align: center; padding: 100px 26px; border-top: 1px solid var(--line);
background: radial-gradient(700px 400px at 50% 0%, rgba(33,206,118,0.14), transparent 62%), var(--bg);
}
.closing h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin: 0 0 18px; }
.closing p { max-width: 600px; margin: 0 auto 30px; color: var(--muted); font-size: 1.12rem; }
.closing-support { margin-top: 48px; color: var(--muted-2); font-size: 1rem; }
.closing-support a { color: var(--green-lt); font-weight: 600; }
/* ---------- Footer ---------- */
.site-footer { background: #050806; color: var(--muted); padding: 40px 26px 30px; text-align: center; border-top: 1px solid var(--line); }
.footer-inner {
max-width: var(--maxw); margin: 0 auto 18px; display: flex; align-items: center;
justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text); font-weight: 500; }
.footer-links a:hover { color: var(--white); }
.copyright { font-size: 0.88rem; margin: 0; color: var(--muted-2); }
/* ---------- Responsive ---------- */
@media (max-width: 860px) {
.usecase-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
.usecase p { text-align: left; }
.usecase .punch { text-align: center; }
}
@media (max-width: 560px) {
.site-header nav a[href="#features"], .site-header nav a[href="#screens"], .site-header nav a[href="#faq"] { display: none; }
.footer-inner { flex-direction: column; }
.hero { padding-top: 64px; }
}
/* The hero video is landscape with the phone centered — on a narrow screen the whole frame
shrinks and the phone gets tiny. Zoom into the center so the phone reads big; the dark
sides that get clipped blend into the page background anyway. */
@media (max-width: 640px) {
/* Swap the wide desktop video for a portrait cut where the phone fills the frame.
A real (in-viewport, full-width) video keeps iOS autoplay working. */
.hero-video { max-width: 100%; margin-top: 28px; }
.hero-video .hv-wide { display: none; }
.hero-video .hv-tall { display: block; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.card { transition: none; }
}