@jonsoc/console-app 1.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. package/.opencode/agent/css.md +149 -0
  2. package/README.md +32 -0
  3. package/package.json +49 -0
  4. package/public/apple-touch-icon-v3.png +1 -0
  5. package/public/apple-touch-icon.png +1 -0
  6. package/public/email +1 -0
  7. package/public/favicon-96x96-v3.png +1 -0
  8. package/public/favicon-96x96.png +1 -0
  9. package/public/favicon-v3.ico +1 -0
  10. package/public/favicon-v3.svg +1 -0
  11. package/public/favicon.ico +1 -0
  12. package/public/favicon.svg +1 -0
  13. package/public/opencode-brand-assets.zip +0 -0
  14. package/public/robots.txt +6 -0
  15. package/public/site.webmanifest +1 -0
  16. package/public/social-share-black.png +1 -0
  17. package/public/social-share-zen.png +1 -0
  18. package/public/social-share.png +1 -0
  19. package/public/theme.json +182 -0
  20. package/public/web-app-manifest-192x192.png +1 -0
  21. package/public/web-app-manifest-512x512.png +1 -0
  22. package/script/generate-sitemap.ts +103 -0
  23. package/src/app.css +1 -0
  24. package/src/app.tsx +27 -0
  25. package/src/asset/black/hero.png +0 -0
  26. package/src/asset/brand/opencode-brand-assets.zip +0 -0
  27. package/src/asset/brand/opencode-logo-dark.png +0 -0
  28. package/src/asset/brand/opencode-logo-dark.svg +16 -0
  29. package/src/asset/brand/opencode-logo-light.png +0 -0
  30. package/src/asset/brand/opencode-logo-light.svg +16 -0
  31. package/src/asset/brand/opencode-wordmark-dark.png +0 -0
  32. package/src/asset/brand/opencode-wordmark-dark.svg +30 -0
  33. package/src/asset/brand/opencode-wordmark-light.png +0 -0
  34. package/src/asset/brand/opencode-wordmark-light.svg +30 -0
  35. package/src/asset/brand/opencode-wordmark-simple-dark.png +0 -0
  36. package/src/asset/brand/opencode-wordmark-simple-dark.svg +22 -0
  37. package/src/asset/brand/opencode-wordmark-simple-light.png +0 -0
  38. package/src/asset/brand/opencode-wordmark-simple-light.svg +22 -0
  39. package/src/asset/brand/preview-opencode-dark.png +0 -0
  40. package/src/asset/brand/preview-opencode-logo-dark.png +0 -0
  41. package/src/asset/brand/preview-opencode-logo-light.png +0 -0
  42. package/src/asset/brand/preview-opencode-wordmark-dark.png +0 -0
  43. package/src/asset/brand/preview-opencode-wordmark-light.png +0 -0
  44. package/src/asset/brand/preview-opencode-wordmark-simple-dark.png +0 -0
  45. package/src/asset/brand/preview-opencode-wordmark-simple-light.png +0 -0
  46. package/src/asset/lander/avatar-adam.png +0 -0
  47. package/src/asset/lander/avatar-david.png +0 -0
  48. package/src/asset/lander/avatar-dax.png +0 -0
  49. package/src/asset/lander/avatar-frank.png +0 -0
  50. package/src/asset/lander/avatar-jay.png +0 -0
  51. package/src/asset/lander/brand-assets-dark.svg +10 -0
  52. package/src/asset/lander/brand-assets-light.svg +10 -0
  53. package/src/asset/lander/brand.png +0 -0
  54. package/src/asset/lander/check.svg +3 -0
  55. package/src/asset/lander/copy.svg +3 -0
  56. package/src/asset/lander/desktop-app-icon.png +0 -0
  57. package/src/asset/lander/dock.png +0 -0
  58. package/src/asset/lander/logo-dark.svg +11 -0
  59. package/src/asset/lander/logo-light.svg +11 -0
  60. package/src/asset/lander/opencode-comparison-min.mp4 +0 -0
  61. package/src/asset/lander/opencode-comparison-poster.png +0 -0
  62. package/src/asset/lander/opencode-desktop-icon.png +0 -0
  63. package/src/asset/lander/opencode-logo-dark.svg +11 -0
  64. package/src/asset/lander/opencode-logo-light.svg +11 -0
  65. package/src/asset/lander/opencode-min.mp4 +0 -0
  66. package/src/asset/lander/opencode-poster.png +0 -0
  67. package/src/asset/lander/opencode-wordmark-dark.svg +25 -0
  68. package/src/asset/lander/opencode-wordmark-light.svg +25 -0
  69. package/src/asset/lander/screenshot-github.png +0 -0
  70. package/src/asset/lander/screenshot-splash.png +0 -0
  71. package/src/asset/lander/screenshot-vscode.png +0 -0
  72. package/src/asset/lander/screenshot.png +0 -0
  73. package/src/asset/lander/wordmark-dark.svg +3 -0
  74. package/src/asset/lander/wordmark-light.svg +3 -0
  75. package/src/asset/logo-ornate-dark.svg +18 -0
  76. package/src/asset/logo-ornate-light.svg +18 -0
  77. package/src/asset/logo.svg +18 -0
  78. package/src/asset/zen-ornate-dark.svg +8 -0
  79. package/src/asset/zen-ornate-light.svg +8 -0
  80. package/src/component/dropdown.css +80 -0
  81. package/src/component/dropdown.tsx +79 -0
  82. package/src/component/email-signup.tsx +48 -0
  83. package/src/component/faq.tsx +33 -0
  84. package/src/component/footer.tsx +38 -0
  85. package/src/component/header-context-menu.css +63 -0
  86. package/src/component/header.tsx +279 -0
  87. package/src/component/icon.tsx +257 -0
  88. package/src/component/legal.tsx +20 -0
  89. package/src/component/modal.css +66 -0
  90. package/src/component/modal.tsx +24 -0
  91. package/src/component/spotlight.css +15 -0
  92. package/src/component/spotlight.tsx +820 -0
  93. package/src/config.ts +29 -0
  94. package/src/context/auth.session.ts +0 -0
  95. package/src/context/auth.ts +116 -0
  96. package/src/context/auth.withActor.ts +7 -0
  97. package/src/entry-client.tsx +4 -0
  98. package/src/entry-server.tsx +30 -0
  99. package/src/global.d.ts +5 -0
  100. package/src/lib/github.ts +38 -0
  101. package/src/middleware.ts +5 -0
  102. package/src/routes/[...404].css +130 -0
  103. package/src/routes/[...404].tsx +38 -0
  104. package/src/routes/api/enterprise.ts +47 -0
  105. package/src/routes/auth/[...callback].ts +41 -0
  106. package/src/routes/auth/authorize.ts +10 -0
  107. package/src/routes/auth/index.ts +12 -0
  108. package/src/routes/auth/logout.ts +17 -0
  109. package/src/routes/auth/status.ts +7 -0
  110. package/src/routes/bench/[id].tsx +365 -0
  111. package/src/routes/bench/index.tsx +86 -0
  112. package/src/routes/bench/submission.ts +29 -0
  113. package/src/routes/black/common.tsx +62 -0
  114. package/src/routes/black/index.tsx +108 -0
  115. package/src/routes/black/subscribe/[plan].tsx +449 -0
  116. package/src/routes/black/workspace.css +214 -0
  117. package/src/routes/black/workspace.tsx +229 -0
  118. package/src/routes/black.css +828 -0
  119. package/src/routes/black.tsx +285 -0
  120. package/src/routes/brand/index.css +555 -0
  121. package/src/routes/brand/index.tsx +252 -0
  122. package/src/routes/changelog/index.css +477 -0
  123. package/src/routes/changelog/index.tsx +147 -0
  124. package/src/routes/debug/index.ts +13 -0
  125. package/src/routes/desktop-feedback.ts +5 -0
  126. package/src/routes/discord.ts +5 -0
  127. package/src/routes/docs/[...path].ts +20 -0
  128. package/src/routes/docs/index.ts +20 -0
  129. package/src/routes/download/[platform].ts +38 -0
  130. package/src/routes/download/index.css +750 -0
  131. package/src/routes/download/index.tsx +482 -0
  132. package/src/routes/download/types.ts +4 -0
  133. package/src/routes/enterprise/index.css +578 -0
  134. package/src/routes/enterprise/index.tsx +251 -0
  135. package/src/routes/index.css +1251 -0
  136. package/src/routes/index.tsx +840 -0
  137. package/src/routes/legal/privacy-policy/index.css +343 -0
  138. package/src/routes/legal/privacy-policy/index.tsx +1512 -0
  139. package/src/routes/legal/terms-of-service/index.css +254 -0
  140. package/src/routes/legal/terms-of-service/index.tsx +512 -0
  141. package/src/routes/openapi.json.ts +7 -0
  142. package/src/routes/s/[id].ts +20 -0
  143. package/src/routes/stripe/webhook.ts +532 -0
  144. package/src/routes/t/[...path].tsx +20 -0
  145. package/src/routes/temp.tsx +172 -0
  146. package/src/routes/user-menu.css +18 -0
  147. package/src/routes/user-menu.tsx +32 -0
  148. package/src/routes/workspace/[id]/billing/billing-section.module.css +185 -0
  149. package/src/routes/workspace/[id]/billing/billing-section.tsx +240 -0
  150. package/src/routes/workspace/[id]/billing/black-section.module.css +142 -0
  151. package/src/routes/workspace/[id]/billing/black-section.tsx +269 -0
  152. package/src/routes/workspace/[id]/billing/black-waitlist-section.module.css +23 -0
  153. package/src/routes/workspace/[id]/billing/index.tsx +32 -0
  154. package/src/routes/workspace/[id]/billing/monthly-limit-section.module.css +96 -0
  155. package/src/routes/workspace/[id]/billing/monthly-limit-section.tsx +133 -0
  156. package/src/routes/workspace/[id]/billing/payment-section.module.css +93 -0
  157. package/src/routes/workspace/[id]/billing/payment-section.tsx +122 -0
  158. package/src/routes/workspace/[id]/billing/reload-section.module.css +261 -0
  159. package/src/routes/workspace/[id]/billing/reload-section.tsx +213 -0
  160. package/src/routes/workspace/[id]/graph-section.module.css +145 -0
  161. package/src/routes/workspace/[id]/graph-section.tsx +475 -0
  162. package/src/routes/workspace/[id]/index.tsx +81 -0
  163. package/src/routes/workspace/[id]/keys/index.tsx +11 -0
  164. package/src/routes/workspace/[id]/keys/key-section.module.css +197 -0
  165. package/src/routes/workspace/[id]/keys/key-section.tsx +176 -0
  166. package/src/routes/workspace/[id]/members/index.tsx +11 -0
  167. package/src/routes/workspace/[id]/members/member-section.module.css +249 -0
  168. package/src/routes/workspace/[id]/members/member-section.tsx +343 -0
  169. package/src/routes/workspace/[id]/members/role-dropdown.css +72 -0
  170. package/src/routes/workspace/[id]/members/role-dropdown.tsx +43 -0
  171. package/src/routes/workspace/[id]/model-section.module.css +173 -0
  172. package/src/routes/workspace/[id]/model-section.tsx +174 -0
  173. package/src/routes/workspace/[id]/new-user-section.module.css +143 -0
  174. package/src/routes/workspace/[id]/new-user-section.tsx +104 -0
  175. package/src/routes/workspace/[id]/provider-section.module.css +138 -0
  176. package/src/routes/workspace/[id]/provider-section.tsx +188 -0
  177. package/src/routes/workspace/[id]/settings/index.tsx +11 -0
  178. package/src/routes/workspace/[id]/settings/settings-section.module.css +94 -0
  179. package/src/routes/workspace/[id]/settings/settings-section.tsx +122 -0
  180. package/src/routes/workspace/[id]/usage-section.module.css +185 -0
  181. package/src/routes/workspace/[id]/usage-section.tsx +200 -0
  182. package/src/routes/workspace/[id].css +308 -0
  183. package/src/routes/workspace/[id].tsx +62 -0
  184. package/src/routes/workspace/common.tsx +120 -0
  185. package/src/routes/workspace-picker.css +74 -0
  186. package/src/routes/workspace-picker.tsx +122 -0
  187. package/src/routes/workspace.css +107 -0
  188. package/src/routes/workspace.tsx +38 -0
  189. package/src/routes/zen/index.css +866 -0
  190. package/src/routes/zen/index.tsx +343 -0
  191. package/src/routes/zen/util/dataDumper.ts +44 -0
  192. package/src/routes/zen/util/error.ts +13 -0
  193. package/src/routes/zen/util/handler.ts +784 -0
  194. package/src/routes/zen/util/logger.ts +12 -0
  195. package/src/routes/zen/util/provider/anthropic.ts +752 -0
  196. package/src/routes/zen/util/provider/google.ts +75 -0
  197. package/src/routes/zen/util/provider/openai-compatible.ts +546 -0
  198. package/src/routes/zen/util/provider/openai.ts +630 -0
  199. package/src/routes/zen/util/provider/provider.ts +210 -0
  200. package/src/routes/zen/util/rateLimiter.ts +41 -0
  201. package/src/routes/zen/util/stickyProviderTracker.ts +16 -0
  202. package/src/routes/zen/util/trialLimiter.ts +49 -0
  203. package/src/routes/zen/v1/chat/completions.ts +11 -0
  204. package/src/routes/zen/v1/messages.ts +11 -0
  205. package/src/routes/zen/v1/models/[model].ts +13 -0
  206. package/src/routes/zen/v1/models.ts +60 -0
  207. package/src/routes/zen/v1/responses.ts +11 -0
  208. package/src/style/base.css +21 -0
  209. package/src/style/component/button.css +102 -0
  210. package/src/style/index.css +8 -0
  211. package/src/style/reset.css +76 -0
  212. package/src/style/token/color.css +91 -0
  213. package/src/style/token/font.css +21 -0
  214. package/src/style/token/space.css +46 -0
  215. package/sst-env.d.ts +9 -0
  216. package/tsconfig.json +21 -0
  217. package/vite.config.ts +25 -0
@@ -0,0 +1,578 @@
1
+ ::selection {
2
+ background: var(--color-background-interactive);
3
+ color: var(--color-text-strong);
4
+
5
+ @media (prefers-color-scheme: dark) {
6
+ background: var(--color-background-interactive);
7
+ color: var(--color-text-inverted);
8
+ }
9
+ }
10
+
11
+ [data-page="enterprise"] {
12
+ --color-background: hsl(0, 20%, 99%);
13
+ --color-background-weak: hsl(0, 8%, 97%);
14
+ --color-background-weak-hover: hsl(0, 8%, 94%);
15
+ --color-background-strong: hsl(0, 5%, 12%);
16
+ --color-background-strong-hover: hsl(0, 5%, 18%);
17
+ --color-background-interactive: hsl(62, 84%, 88%);
18
+ --color-background-interactive-weaker: hsl(64, 74%, 95%);
19
+
20
+ --color-text: hsl(0, 1%, 39%);
21
+ --color-text-weak: hsl(0, 1%, 60%);
22
+ --color-text-weaker: hsl(30, 2%, 81%);
23
+ --color-text-strong: hsl(0, 5%, 12%);
24
+ --color-text-inverted: hsl(0, 20%, 99%);
25
+ --color-text-success: hsl(119, 100%, 35%);
26
+
27
+ --color-border: hsl(30, 2%, 81%);
28
+ --color-border-weak: hsl(0, 1%, 85%);
29
+
30
+ --color-icon: hsl(0, 1%, 55%);
31
+ --color-success: hsl(142, 76%, 36%);
32
+
33
+ background: var(--color-background);
34
+ font-family: var(--font-mono);
35
+ color: var(--color-text);
36
+ padding-bottom: 5rem;
37
+
38
+ @media (prefers-color-scheme: dark) {
39
+ --color-background: hsl(0, 9%, 7%);
40
+ --color-background-weak: hsl(0, 6%, 10%);
41
+ --color-background-weak-hover: hsl(0, 6%, 15%);
42
+ --color-background-strong: hsl(0, 15%, 94%);
43
+ --color-background-strong-hover: hsl(0, 15%, 97%);
44
+ --color-background-interactive: hsl(62, 100%, 90%);
45
+ --color-background-interactive-weaker: hsl(60, 20%, 8%);
46
+
47
+ --color-text: hsl(0, 4%, 71%);
48
+ --color-text-weak: hsl(0, 2%, 49%);
49
+ --color-text-weaker: hsl(0, 3%, 28%);
50
+ --color-text-strong: hsl(0, 15%, 94%);
51
+ --color-text-inverted: hsl(0, 9%, 7%);
52
+ --color-text-success: hsl(119, 60%, 72%);
53
+
54
+ --color-border: hsl(0, 3%, 28%);
55
+ --color-border-weak: hsl(0, 4%, 23%);
56
+
57
+ --color-icon: hsl(10, 3%, 43%);
58
+ --color-success: hsl(142, 76%, 46%);
59
+ }
60
+
61
+ /* Header and Footer styles - copied from index.css */
62
+ [data-component="top"] {
63
+ padding: 24px 5rem;
64
+ height: 80px;
65
+ position: sticky;
66
+ top: 0;
67
+ display: flex;
68
+ justify-content: space-between;
69
+ align-items: center;
70
+ background: var(--color-background);
71
+ border-bottom: 1px solid var(--color-border-weak);
72
+ z-index: 10;
73
+
74
+ @media (max-width: 60rem) {
75
+ padding: 24px 1.5rem;
76
+ }
77
+
78
+ img {
79
+ height: 34px;
80
+ width: auto;
81
+ }
82
+
83
+ [data-component="nav-desktop"] {
84
+ ul {
85
+ display: flex;
86
+ justify-content: space-between;
87
+ align-items: center;
88
+ gap: 48px;
89
+
90
+ @media (max-width: 55rem) {
91
+ gap: 32px;
92
+ }
93
+
94
+ @media (max-width: 48rem) {
95
+ gap: 24px;
96
+ }
97
+ li {
98
+ display: inline-block;
99
+ a {
100
+ text-decoration: none;
101
+ span {
102
+ color: var(--color-text-weak);
103
+ }
104
+ }
105
+ a:hover {
106
+ text-decoration: underline;
107
+ text-underline-offset: 2px;
108
+ text-decoration-thickness: 1px;
109
+ }
110
+ [data-slot="cta-button"] {
111
+ background: var(--color-background-strong);
112
+ color: var(--color-text-inverted);
113
+ padding: 8px 16px 8px 10px;
114
+ border-radius: 4px;
115
+ font-weight: 500;
116
+ text-decoration: none;
117
+ display: flex;
118
+ align-items: center;
119
+ gap: 8px;
120
+
121
+ @media (max-width: 55rem) {
122
+ display: none;
123
+ }
124
+ }
125
+ [data-slot="cta-button"]:hover {
126
+ background: var(--color-background-strong-hover);
127
+ text-decoration: none;
128
+ }
129
+ }
130
+ }
131
+
132
+ @media (max-width: 40rem) {
133
+ display: none;
134
+ }
135
+ }
136
+
137
+ [data-component="nav-mobile"] {
138
+ button > svg {
139
+ color: var(--color-icon);
140
+ }
141
+ }
142
+
143
+ [data-component="nav-mobile-toggle"] {
144
+ border: none;
145
+ background: none;
146
+ outline: none;
147
+ height: 40px;
148
+ width: 40px;
149
+ cursor: pointer;
150
+ margin-right: -8px;
151
+ }
152
+
153
+ [data-component="nav-mobile-toggle"]:hover {
154
+ background: var(--color-background-weak);
155
+ }
156
+
157
+ [data-component="nav-mobile"] {
158
+ display: none;
159
+
160
+ @media (max-width: 40rem) {
161
+ display: block;
162
+
163
+ [data-component="nav-mobile-icon"] {
164
+ cursor: pointer;
165
+ height: 40px;
166
+ width: 40px;
167
+ display: flex;
168
+ align-items: center;
169
+ justify-content: center;
170
+ }
171
+
172
+ [data-component="nav-mobile-menu-list"] {
173
+ position: fixed;
174
+ background: var(--color-background);
175
+ top: 80px;
176
+ left: 0;
177
+ right: 0;
178
+ height: 100vh;
179
+
180
+ ul {
181
+ list-style: none;
182
+ padding: 20px 0;
183
+
184
+ li {
185
+ a {
186
+ text-decoration: none;
187
+ padding: 20px;
188
+ display: block;
189
+
190
+ span {
191
+ color: var(--color-text-weak);
192
+ }
193
+ }
194
+
195
+ a:hover {
196
+ background: var(--color-background-weak);
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
+ }
203
+
204
+ [data-slot="logo dark"] {
205
+ display: none;
206
+ }
207
+
208
+ @media (prefers-color-scheme: dark) {
209
+ [data-slot="logo light"] {
210
+ display: none;
211
+ }
212
+ [data-slot="logo dark"] {
213
+ display: block;
214
+ }
215
+ }
216
+ }
217
+
218
+ [data-component="footer"] {
219
+ border-top: 1px solid var(--color-border-weak);
220
+ display: flex;
221
+ flex-direction: row;
222
+
223
+ @media (max-width: 65rem) {
224
+ border-bottom: 1px solid var(--color-border-weak);
225
+ }
226
+
227
+ [data-slot="cell"] {
228
+ flex: 1;
229
+ text-align: center;
230
+
231
+ a {
232
+ text-decoration: none;
233
+ padding: 2rem 0;
234
+ width: 100%;
235
+ display: block;
236
+
237
+ span {
238
+ color: var(--color-text-weak);
239
+
240
+ @media (max-width: 40rem) {
241
+ display: none;
242
+ }
243
+ }
244
+ }
245
+
246
+ a:hover {
247
+ background: var(--color-background-weak);
248
+ text-decoration: underline;
249
+ text-underline-offset: 2px;
250
+ text-decoration-thickness: 1px;
251
+ }
252
+ }
253
+
254
+ [data-slot="cell"] + [data-slot="cell"] {
255
+ border-left: 1px solid var(--color-border-weak);
256
+
257
+ @media (max-width: 40rem) {
258
+ border-left: none;
259
+ }
260
+ }
261
+
262
+ /* Mobile: third column on its own row */
263
+ @media (max-width: 25rem) {
264
+ flex-wrap: wrap;
265
+
266
+ [data-slot="cell"] {
267
+ flex: 1 0 100%;
268
+ border-left: none;
269
+ border-top: 1px solid var(--color-border-weak);
270
+ }
271
+
272
+ [data-slot="cell"]:nth-child(1) {
273
+ border-top: none;
274
+ }
275
+ }
276
+ }
277
+
278
+ [data-component="container"] {
279
+ max-width: 67.5rem;
280
+ margin: 0 auto;
281
+ border: 1px solid var(--color-border-weak);
282
+ border-top: none;
283
+
284
+ @media (max-width: 65rem) {
285
+ border: none;
286
+ }
287
+ }
288
+
289
+ [data-component="content"] {
290
+ }
291
+
292
+ [data-component="enterprise-content"] {
293
+ padding: 4rem 0;
294
+
295
+ @media (max-width: 60rem) {
296
+ padding: 2rem 0;
297
+ }
298
+ }
299
+
300
+ [data-component="enterprise-columns"] {
301
+ display: grid;
302
+ grid-template-columns: 1fr 1fr;
303
+ gap: 4rem;
304
+ padding: 4rem 5rem;
305
+
306
+ @media (max-width: 80rem) {
307
+ gap: 3rem;
308
+ }
309
+
310
+ @media (max-width: 60rem) {
311
+ grid-template-columns: 1fr;
312
+ gap: 3rem;
313
+ padding: 2rem 1.5rem;
314
+ }
315
+ }
316
+
317
+ [data-component="enterprise-column-1"] {
318
+ h1 {
319
+ font-size: 1.5rem;
320
+ font-weight: 700;
321
+ color: var(--color-text-strong);
322
+ margin-bottom: 1rem;
323
+ }
324
+
325
+ h3 {
326
+ font-size: 1.25rem;
327
+ font-weight: 500;
328
+ color: var(--color-text-strong);
329
+ margin: 2rem 0 1rem 0;
330
+ }
331
+
332
+ p {
333
+ line-height: 1.6;
334
+ margin-bottom: 1.5rem;
335
+ color: var(--color-text);
336
+ }
337
+
338
+ [data-component="testimonial"] {
339
+ margin-top: 4rem;
340
+ font-weight: 500;
341
+ color: var(--color-text-strong);
342
+
343
+ [data-component="quotation"] {
344
+ svg {
345
+ margin-bottom: 1rem;
346
+ opacity: 20%;
347
+ }
348
+ }
349
+
350
+ [data-component="testimonial-logo"] {
351
+ svg {
352
+ margin-top: 1.5rem;
353
+ }
354
+ }
355
+ }
356
+ }
357
+
358
+ [data-component="enterprise-column-2"] {
359
+ [data-component="enterprise-form"] {
360
+ padding: 0;
361
+
362
+ h2 {
363
+ font-size: 1.5rem;
364
+ font-weight: 500;
365
+ color: var(--color-text-strong);
366
+ margin-bottom: 1.5rem;
367
+ }
368
+
369
+ [data-component="form-group"] {
370
+ margin-bottom: 1.5rem;
371
+
372
+ label {
373
+ display: block;
374
+ font-weight: 500;
375
+ color: var(--color-text-weak);
376
+ margin-bottom: 0.5rem;
377
+ font-size: 0.875rem;
378
+ }
379
+
380
+ input:-webkit-autofill,
381
+ input:-webkit-autofill:hover,
382
+ input:-webkit-autofill:focus,
383
+ input:-webkit-autofill:active {
384
+ transition: background-color 5000000s ease-in-out 0s;
385
+ }
386
+
387
+ input:-webkit-autofill {
388
+ -webkit-text-fill-color: var(--color-text-strong) !important;
389
+ }
390
+
391
+ input:-moz-autofill {
392
+ -moz-text-fill-color: var(--color-text-strong) !important;
393
+ }
394
+
395
+ input,
396
+ textarea {
397
+ width: 100%;
398
+ padding: 0.75rem;
399
+ border: 1px solid var(--color-border-weak);
400
+ border-radius: 4px;
401
+ background: var(--color-background-weak);
402
+ color: var(--color-text-strong);
403
+ font-family: inherit;
404
+
405
+ &::placeholder {
406
+ color: var(--color-text-weak);
407
+ }
408
+
409
+ &:focus {
410
+ background: var(--color-background-interactive-weaker);
411
+ outline: none;
412
+ border: none;
413
+ color: var(--color-text-strong);
414
+ border: 1px solid var(--color-background-strong);
415
+ box-shadow: 0 0 0 3px var(--color-background-interactive);
416
+
417
+ @media (prefers-color-scheme: dark) {
418
+ box-shadow: none;
419
+ border: 1px solid var(--color-background-interactive);
420
+ }
421
+ }
422
+ }
423
+
424
+ textarea {
425
+ resize: vertical;
426
+ min-height: 120px;
427
+ }
428
+ }
429
+
430
+ [data-component="submit-button"] {
431
+ padding: 0.5rem 1.5rem;
432
+ background: var(--color-background-strong);
433
+ color: var(--color-text-inverted);
434
+ border: none;
435
+ border-radius: 4px;
436
+ font-weight: 500;
437
+ cursor: pointer;
438
+ transition: background-color 0.2s ease;
439
+
440
+ &:hover:not(:disabled) {
441
+ background: var(--color-background-strong-hover);
442
+ }
443
+
444
+ &:disabled {
445
+ opacity: 0.6;
446
+ cursor: not-allowed;
447
+ }
448
+ }
449
+
450
+ [data-component="success-message"] {
451
+ margin-top: 1rem;
452
+ padding: 1rem 0;
453
+ color: var(--color-text-success);
454
+ text-align: left;
455
+ }
456
+ }
457
+ }
458
+
459
+ [data-component="faq"] {
460
+ border-top: 1px solid var(--color-border-weak);
461
+ padding: 4rem 5rem;
462
+
463
+ @media (max-width: 60rem) {
464
+ padding: 2rem 1.5rem;
465
+ }
466
+
467
+ [data-slot="section-title"] {
468
+ margin-bottom: 24px;
469
+
470
+ h3 {
471
+ font-size: 16px;
472
+ font-weight: 700;
473
+ color: var(--color-text-strong);
474
+ margin-bottom: 12px;
475
+ }
476
+
477
+ p {
478
+ margin-bottom: 12px;
479
+ color: var(--color-text);
480
+ }
481
+ }
482
+
483
+ ul {
484
+ padding: 0;
485
+
486
+ li {
487
+ list-style: none;
488
+ margin-bottom: 24px;
489
+ line-height: 200%;
490
+
491
+ @media (max-width: 60rem) {
492
+ line-height: 180%;
493
+ }
494
+ }
495
+ }
496
+
497
+ [data-slot="faq-question"] {
498
+ display: flex;
499
+ gap: 16px;
500
+ margin-bottom: 8px;
501
+ color: var(--color-text-strong);
502
+ font-weight: 500;
503
+ cursor: pointer;
504
+ background: none;
505
+ border: none;
506
+ padding: 0;
507
+
508
+ [data-slot="faq-icon-plus"] {
509
+ flex-shrink: 0;
510
+ color: var(--color-text-weak);
511
+ margin-top: 2px;
512
+
513
+ [data-closed] & {
514
+ display: block;
515
+ }
516
+ [data-expanded] & {
517
+ display: none;
518
+ }
519
+ }
520
+ [data-slot="faq-icon-minus"] {
521
+ flex-shrink: 0;
522
+ color: var(--color-text-weak);
523
+ margin-top: 2px;
524
+
525
+ [data-closed] & {
526
+ display: none;
527
+ }
528
+ [data-expanded] & {
529
+ display: block;
530
+ }
531
+ }
532
+ [data-slot="faq-question-text"] {
533
+ flex-grow: 1;
534
+ text-align: left;
535
+ }
536
+ }
537
+
538
+ [data-slot="faq-answer"] {
539
+ margin-left: 40px;
540
+ margin-bottom: 32px;
541
+ color: var(--color-text);
542
+ }
543
+ }
544
+
545
+ [data-component="legal"] {
546
+ color: var(--color-text-weak);
547
+ text-align: center;
548
+ padding: 2rem 5rem;
549
+ display: flex;
550
+ gap: 32px;
551
+ justify-content: center;
552
+
553
+ @media (max-width: 60rem) {
554
+ padding: 2rem 1.5rem;
555
+ }
556
+
557
+ a {
558
+ color: var(--color-text-weak);
559
+ text-decoration: none;
560
+ }
561
+
562
+ a:hover {
563
+ color: var(--color-text);
564
+ text-decoration: underline;
565
+ }
566
+ }
567
+
568
+ a {
569
+ color: var(--color-text-strong);
570
+ text-decoration: underline;
571
+ text-underline-offset: 2px;
572
+ text-decoration-thickness: 1px;
573
+
574
+ &:hover {
575
+ text-decoration-thickness: 2px;
576
+ }
577
+ }
578
+ }