-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
330 lines (308 loc) · 13.7 KB
/
Copy pathstyle.css
File metadata and controls
330 lines (308 loc) · 13.7 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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/* ==========================================================================
FreClean | Design System
Display/Utility: Space Grotesk | Body: Inter | Data/Mono: IBM Plex Mono
Palette: deep sky blue + leaf green (from the FreClean mark) on a light
mineral-white surface, with a warm sun-gold reserved for single actions.
Signature motif: the "wipe" | a diagonal blue-to-green streak used as a
section divider, echoing a cloth pass across a surface and doubling as
the step-marker for the Web3 payment states.
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');
:root{
--blue: #0B72B9;
--blue-deep: #084F80;
--green: #2FAE60;
--green-deep: #1F7A44;
--gold: #F4B93F;
--ink: #0F2A2E;
--ink-soft: #45605F;
--surface: #F6FAF9;
--surface-alt: #EAF3EF;
--white: #FFFFFF;
--line: #D8E6E1;
--radius: 14px;
--wipe: linear-gradient(100deg, var(--blue) 0%, var(--green) 100%);
--shadow: 0 12px 30px -14px rgba(15,42,46,.25);
}
/* Skip link for accessibility */
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;}
.skip-link:focus{position:fixed;left:16px;top:16px;width:auto;height:auto;padding:8px 12px;border-radius:6px;background:var(--white);color:var(--ink);box-shadow:var(--shadow);z-index:9999;outline:3px solid var(--gold);}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
margin:0;
font-family:'Inter',sans-serif;
color:var(--ink);
background:
radial-gradient(circle at top left, rgba(11,114,185,.06), transparent 18%),
radial-gradient(circle at top right, rgba(47,174,96,.06), transparent 22%),
var(--surface);
line-height:1.6;
}
h1,h2,h3,h4{
font-family:'Space Grotesk',sans-serif;
font-weight:700;
line-height:1.15;
margin:0 0 .5em;
letter-spacing:-.01em;
}
p{margin:0 0 1em;color:var(--ink-soft);}
a{color:var(--blue-deep);text-decoration:none;}
.mono{font-family:'IBM Plex Mono',monospace;letter-spacing:.02em;}
img{max-width:100%;display:block;border-radius:var(--radius);}
.container{max-width:1120px;margin:0 auto;padding:0 24px;}
.btn,
.card,
.pay-option,
.step,
.stat-card{
transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover,
.card:hover,
.pay-option:hover,
.step:hover,
.stat-card:hover{
transform:translateY(-2px);
}
@media (prefers-reduced-motion: reduce){
*{animation:none !important;transition:none !important;}
}
/* ---- Header ---- */
header.site{
position:sticky;top:0;z-index:50;
background:rgba(246,250,249,.9);
backdrop-filter:blur(8px);
border-bottom:1px solid var(--line);
}
.nav{
display:flex;align-items:center;justify-content:space-between;
padding:10px 20px;max-width:1120px;margin:0 auto;
}
.brand{display:flex;align-items:center;gap:10px;font-family:'Space Grotesk';font-weight:700;font-size:1.05rem;color:var(--ink);}
.brand img{width:42px;height:42px;border-radius:8px;object-fit:cover;}
.nav ul{list-style:none;display:flex;gap:26px;margin:0;padding:0;}
.nav a{color:var(--ink);font-weight:500;font-size:.95rem;padding:6px 2px;border-bottom:2px solid transparent;}
.nav a:hover, .nav a:focus-visible{border-bottom:2px solid var(--green);}
.nav a:focus-visible, a:focus-visible, button:focus-visible{outline:3px solid var(--gold);outline-offset:2px;}
.nav .cta{
background:var(--wipe);color:#fff;padding:9px 18px;border-radius:999px;font-weight:600;box-shadow:0 14px 24px -18px rgba(11,114,185,.8);
}
.menu-toggle{display:none;background:none;border:none;font-size:1.6rem;color:var(--ink);}
@media (max-width:860px){
.nav ul{display:none;}
.menu-toggle{display:block;}
.nav ul.open{
display:flex;flex-direction:column;position:absolute;top:64px;left:0;right:0;
background:var(--white);padding:16px 24px;border-bottom:1px solid var(--line);gap:14px;
}
}
/* ---- Wipe divider (signature element) ---- */
.wipe{
height:6px;width:100%;background:var(--wipe);
border-radius:6px;margin:56px 0 0;
}
.wipe.tight{margin:28px 0;}
/* ---- Hero ---- */
.hero{padding:64px 0 40px;}
.hero-grid{
display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center;
}
/* Editorial hero polish */
.hero{min-height:56vh;display:flex;align-items:center;}
.hero-grid{align-items:center;gap:36px;}
.hero .lead{color:var(--ink-soft);font-size:1.08rem;max-width:44ch;margin-top:6px}
.hero h1{font-weight:700;color:var(--ink);margin-bottom:8px}
.hero .btn{padding:12px 22px}
.hero .btn-ghost{border-color:transparent;background:transparent;color:var(--blue-deep);}
.hero .btn-ghost:hover{background:transparent;filter:brightness(.98)}
.hero-img{position:relative;border-radius:16px;overflow:hidden}
.hero-img::after{
content:"";position:absolute;inset:0;pointer-events:none;mix-blend-mode:screen;
background:linear-gradient(120deg, rgba(11,114,185,0.12) 0%, rgba(47,174,96,0.06) 60%);
transform:skewX(-18deg) translateX(6%);
}
@media (max-width:860px){
.hero{padding:36px 0}
.hero h1{font-size:1.6rem}
.hero .lead{font-size:1rem}
.hero-img::after{display:none}
}
@media (max-width:860px){.hero-grid{grid-template-columns:1fr;}}
.eyebrow{
font-family:'IBM Plex Mono';font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;
color:var(--green-deep);margin-bottom:14px;display:inline-block;
}
.hero h1{font-size:clamp(2.1rem,4vw,3.4rem);}
.hero p.lead{font-size:1.15rem;max-width:46ch;}
.btn-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px;}
.btn-row-split{align-items:center;}
.btn{
display:inline-block;padding:13px 24px;border-radius:999px;font-weight:600;
font-size:.95rem;border:2px solid transparent;box-shadow:0 14px 24px -18px rgba(15,42,46,.35);
}
.btn-logo{
display:inline-flex;align-items:center;justify-content:center;gap:10px;
padding:11px 18px 11px 16px;
}
.btn-logo img{
width:24px;height:24px;border-radius:8px;object-fit:cover;flex-shrink:0;
}
.btn-logo span{display:inline-block;line-height:1.2;}
.btn-primary{background:var(--wipe);color:#fff;}
.btn-primary:hover{filter:brightness(1.06);box-shadow:0 18px 28px -18px rgba(11,114,185,.7);}
.btn-ghost{border-color:var(--blue);color:var(--blue-deep);background:rgba(255,255,255,.7);}
.btn-ghost:hover{background:var(--surface-alt);box-shadow:0 14px 24px -18px rgba(11,114,185,.32);}
.hero-img{border-radius:20px;overflow:hidden;box-shadow:0 24px 44px -26px rgba(15,42,46,.42);}
/* ---- Sections / cards ---- */
section{padding:56px 0;}
.section-head{max-width:640px;margin-bottom:36px;}
.grid{display:grid;gap:22px;}
.grid.cols-2{grid-template-columns:repeat(2,1fr);}
.grid.cols-3{grid-template-columns:repeat(3,1fr);}
.grid.cols-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:860px){.grid.cols-2,.grid.cols-3,.grid.cols-4{grid-template-columns:1fr;}}
.card{
background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(234,243,239,.96));
border:1px solid var(--line);border-radius:var(--radius);
padding:26px;box-shadow:0 18px 34px -28px rgba(15,42,46,.32);
}
.card h3{font-size:1.08rem;margin-bottom:.4em;}
.card .tag{
display:inline-block;font-family:'IBM Plex Mono';font-size:.7rem;
text-transform:uppercase;letter-spacing:.08em;padding:3px 10px;border-radius:999px;
margin-bottom:12px;
}
.tag.live{background:#E4F5EA;color:var(--green-deep);}
.tag.dev{background:#FFF2DC;color:#8A5A00;}
.tag.planned{background:#E9EEF7;color:var(--blue-deep);}
.tag.demo{background:#F5E6EA;color:#8A2A47;}
.pay-shell{
display:grid;grid-template-columns:1.08fr .92fr;gap:24px;align-items:stretch;
}
.pay-option{
background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(234,243,239,.96));
border:1px solid var(--line);border-radius:22px;padding:28px;box-shadow:var(--shadow);
}
.pay-option.highlight{
background:linear-gradient(135deg, rgba(11,114,185,.12), rgba(47,174,96,.08), rgba(255,255,255,.98));
border-color:rgba(11,114,185,.2);
}
.pay-option h2{font-size:clamp(1.5rem,2vw,2.1rem);margin-bottom:10px;}
.pay-option p{margin-bottom:18px;max-width:50ch;}
.pay-list{display:flex;flex-direction:column;gap:10px;margin:18px 0 22px;}
.pay-list span{
display:inline-flex;align-items:center;gap:8px;font-weight:600;color:var(--ink-soft);
}
.pay-list span::before{
content:"";display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--green);
box-shadow:0 0 0 5px rgba(47,174,96,.12);
}
.pay-cta{margin-top:10px;}
.pay-box{
position:relative;margin-top:28px;padding:18px 18px 16px;border-radius:18px;
background:linear-gradient(135deg, #0F2A2E 0%, #0B72B9 52%, #1F7A44 100%);
color:#fff;box-shadow:0 18px 35px -18px rgba(15,42,46,.45);
}
.pay-box .chip{
width:42px;height:30px;border-radius:8px;background:linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,.08));
border:1px solid rgba(255,255,255,.25);margin-bottom:18px;
}
.pay-box .card-row{display:flex;justify-content:space-between;align-items:center;font-weight:700;letter-spacing:.12em;text-transform:uppercase;font-size:.76rem;}
.pay-box .card-row.small{margin-top:14px;font-size:.63rem;opacity:.82;letter-spacing:.2em;}
.payment-form{
display:flex;flex-direction:column;gap:12px;margin:20px 0 0;
}
.payment-form label{
display:flex;flex-direction:column;gap:7px;color:var(--ink);font-weight:600;font-size:.82rem;
}
.payment-form input{
border:1px solid var(--line);border-radius:12px;padding:12px 14px;background:#fff;
font:inherit;color:var(--ink);transition:border-color .18s ease, box-shadow .18s ease;
}
.payment-form input:focus{
outline:none;border-color:rgba(11,114,185,.52);box-shadow:0 0 0 4px rgba(11,114,185,.08);
}
.form-row{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px;}
.payment-form button{margin-top:6px;border:none;cursor:pointer;}
@media (max-width:860px){.pay-shell{grid-template-columns:1fr;}.form-row{grid-template-columns:1fr;}}
/* ---- Steps (used for Web3 status flow + program flow) ---- */
.steps{display:flex;flex-wrap:wrap;gap:0;counter-reset:step;}
.step{
flex:1 1 160px;position:relative;padding:20px 18px 18px;border:1px solid var(--line);
background:linear-gradient(180deg, #ffffff, rgba(234,243,239,.96));
box-shadow:0 18px 28px -26px rgba(15,42,46,.28);
}
.step:first-child{border-radius:var(--radius) 0 0 var(--radius);}
.step:last-child{border-radius:0 var(--radius) var(--radius) 0;}
@media (max-width:760px){
.step{border-radius:var(--radius) !important;margin-bottom:10px;}
}
.step .n{
font-family:'IBM Plex Mono';font-weight:600;color:var(--green-deep);font-size:.8rem;
}
.step h4{font-size:.98rem;margin:.3em 0 .2em;}
.step p{font-size:.88rem;margin:0;}
/* ---- Table (registry / policies) ---- */
table{width:100%;border-collapse:collapse;background:var(--white);border-radius:var(--radius);overflow:hidden;}
th,td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--line);font-size:.92rem;}
th{font-family:'Space Grotesk';background:var(--surface-alt);font-weight:600;}
tr:last-child td{border-bottom:none;}
@media (max-width:760px){
table, thead, tbody, th, td, tr{display:block;}
thead tr{position:absolute;top:-9999px;left:-9999px;}
tr{margin-bottom:18px;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;}
td{border:none;border-bottom:1px solid var(--line);position:relative;padding-left:50%;}
td:before{
position:absolute;top:12px;left:14px;width:45%;padding-right:10px;white-space:normal;font-weight:700;color:var(--ink-soft);
}
td:nth-of-type(1):before{content:'Actif';}
td:nth-of-type(2):before{content:'Symbole';}
td:nth-of-type(3):before{content:'Réseau';}
td:nth-of-type(4):before{content:'Statut';}
td:nth-of-type(5):before{content:'Paiement';}
td:nth-of-type(6):before{content:'Vérification';}
}
.registry-empty{
background:rgba(11,114,185,.06);
border:1px dashed rgba(11,114,185,.35);
padding:24px;
color:var(--ink-soft);
}
.registry-empty h3{margin-top:0;color:var(--blue-deep);}
.registry-empty p{margin-bottom:0;line-height:1.7;}
/* ---- Callout / disclaimer ---- */
.callout{
border-left:4px solid var(--gold);background:linear-gradient(135deg, rgba(244,185,63,.14), rgba(255,248,233,.94));padding:16px 20px;border-radius:14px;
font-size:.92rem;color:#6B4E00;box-shadow:0 16px 26px -20px rgba(107,78,0,.48);
}
.callout p{color:#6B4E00;margin:0;}
.stats-row{
display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:18px;margin-top:26px;
}
.stat-card{
background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(234,243,239,.9));
border:1px solid var(--line);border-radius:18px;padding:22px 20px;box-shadow:0 18px 30px -28px rgba(15,42,46,.32);
}
.stat-card strong{
display:block;font-family:'Space Grotesk';font-size:1.55rem;line-height:1.2;color:var(--ink);margin-bottom:5px;
}
.stat-card span{font-size:.8rem;text-transform:uppercase;letter-spacing:.08em;color:var(--green-deep);font-family:'IBM Plex Mono';}
.stat-card p{margin:8px 0 0;font-size:.95rem;}
@media (max-width:860px){.stats-row{grid-template-columns:1fr;}}
/* ---- Footer ---- */
footer{background:var(--ink);color:#CFE3DE;padding:48px 0 28px;margin-top:60px;}
footer a{color:#EAF6F1;}
footer .grid{grid-template-columns:2fr 1fr 1fr 1fr;}
footer h4{color:#fff;font-size:.9rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px;}
footer ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px;font-size:.9rem;}
.footer-bottom{
border-top:1px solid rgba(255,255,255,.12);margin-top:32px;padding-top:20px;
display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:.82rem;color:#9DBBB4;
}
@media (max-width:860px){footer .grid{grid-template-columns:1fr 1fr;}}
/* ---- Page hero (interior pages) ---- */
.page-hero{padding:44px 0 8px;}
.page-hero h1{font-size:clamp(1.8rem,3.4vw,2.6rem);}
.breadcrumb{font-family:'IBM Plex Mono';font-size:.78rem;color:var(--ink-soft);margin-bottom:10px;}
.breadcrumb a{color:var(--ink-soft);}