@vellumai/assistant 0.9.0 → 0.9.1-staging.1

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 (222) hide show
  1. package/ARCHITECTURE.md +18 -34
  2. package/bun.lock +7 -8
  3. package/docs/activation-funnel-telemetry.md +4 -4
  4. package/docs/architecture/security.md +29 -28
  5. package/docs/stt-provider-onboarding.md +3 -5
  6. package/docs/workflows-testing.md +13 -44
  7. package/docs/workflows.md +3 -5
  8. package/node_modules/@vellumai/ces-client/src/__tests__/ces-client.test.ts +47 -0
  9. package/node_modules/@vellumai/ces-client/src/rpc-client.ts +28 -5
  10. package/node_modules/@vellumai/environments/src/seeds.ts +2 -5
  11. package/node_modules/@vellumai/gateway-client/src/index.ts +17 -6
  12. package/node_modules/@vellumai/gateway-client/src/outbound-contract.ts +119 -0
  13. package/node_modules/@vellumai/gateway-client/src/types.ts +15 -84
  14. package/openapi.yaml +135 -59
  15. package/package.json +2 -1
  16. package/scripts/sync-llm-catalog.ts +6 -15
  17. package/scripts/sync-web-search-catalog.ts +3 -11
  18. package/src/__tests__/actor-trust-resolver-address-fallback.test.ts +14 -26
  19. package/src/__tests__/agent-loop-compaction-strip.test.ts +240 -0
  20. package/src/__tests__/agent-loop-output-hooks.test.ts +69 -0
  21. package/src/__tests__/agent-loop-override-profile.test.ts +25 -0
  22. package/src/__tests__/always-loaded-tools-guard.test.ts +2 -3
  23. package/src/__tests__/app-dir-path-guard.test.ts +0 -1
  24. package/src/__tests__/assistant-feature-flag-guard.test.ts +1 -4
  25. package/src/__tests__/assistant-feature-flag-guardrails.test.ts +0 -2
  26. package/src/__tests__/avatar-identity-sync.test.ts +2 -27
  27. package/src/__tests__/btw-routes.test.ts +6 -8
  28. package/src/__tests__/checker.test.ts +0 -3
  29. package/src/__tests__/config-loader-backfill.test.ts +103 -6
  30. package/src/__tests__/config-watcher.test.ts +0 -18
  31. package/src/__tests__/conversation-agent-loop-inference-profile.test.ts +22 -0
  32. package/src/__tests__/credential-broker.test.ts +449 -1
  33. package/src/__tests__/credential-execution-tools.test.ts +0 -1
  34. package/src/__tests__/credential-prompt-route.test.ts +3 -4
  35. package/src/__tests__/credential-routes.test.ts +360 -0
  36. package/src/__tests__/credential-security-invariants.test.ts +2 -13
  37. package/src/__tests__/dynamic-page-surface.test.ts +101 -1
  38. package/src/__tests__/fixtures/credential-security-fixtures.ts +2 -33
  39. package/src/__tests__/gateway-only-guard.test.ts +3 -7
  40. package/src/__tests__/identity-routes.test.ts +0 -189
  41. package/src/__tests__/inbound-invite-redemption.test.ts +4 -4
  42. package/src/__tests__/invite-redemption-service.test.ts +4 -4
  43. package/src/__tests__/llm-callsite-catalog.test.ts +5 -6
  44. package/src/__tests__/llm-catalog-parity.test.ts +0 -22
  45. package/src/__tests__/llm-resolver.test.ts +49 -24
  46. package/src/__tests__/oauth-provider-seed-logos.test.ts +4 -6
  47. package/src/__tests__/onboarding-persona-write.test.ts +1 -1
  48. package/src/__tests__/persona-resolver.test.ts +11 -14
  49. package/src/__tests__/plugin-api-model-profiles.test.ts +178 -0
  50. package/src/__tests__/registry.test.ts +2 -7
  51. package/src/__tests__/schedule-routes-workflow-validation.test.ts +1 -10
  52. package/src/__tests__/schedule-routes.test.ts +0 -30
  53. package/src/__tests__/schedule-tools.test.ts +2 -18
  54. package/src/__tests__/skill-execute-input.test.ts +46 -1
  55. package/src/__tests__/skill-runtime-path.test.ts +2 -3
  56. package/src/__tests__/subagent-tools.test.ts +116 -0
  57. package/src/__tests__/surface-completion-nudge-hook.test.ts +367 -0
  58. package/src/__tests__/token-estimator-accuracy.benchmark.test.ts +1 -29
  59. package/src/__tests__/token-manager.test.ts +519 -0
  60. package/src/__tests__/tool-executor.test.ts +0 -79
  61. package/src/__tests__/trusted-contact-multichannel.test.ts +3 -3
  62. package/src/__tests__/trusted-contact-verification.test.ts +6 -6
  63. package/src/__tests__/voice-invite-redemption.test.ts +2 -2
  64. package/src/__tests__/web-search-catalog-parity.test.ts +6 -25
  65. package/src/__tests__/workspace-greetings.test.ts +152 -0
  66. package/src/agent/loop.ts +25 -5
  67. package/src/api/README.md +6 -6
  68. package/src/api/responses/conversation-message.ts +2 -4
  69. package/src/api/responses/home.ts +0 -4
  70. package/src/approvals/guardian-request-resolvers.ts +2 -2
  71. package/src/calls/relay-access-wait.ts +1 -1
  72. package/src/calls/voice-session-bridge.ts +2 -2
  73. package/src/cli/commands/plugins.ts +143 -2
  74. package/src/cli/lib/__tests__/diff-plugin.test.ts +443 -0
  75. package/src/cli/lib/__tests__/merge-plugin-tree.test.ts +313 -0
  76. package/src/cli/lib/__tests__/upgrade-plugin.test.ts +253 -2
  77. package/src/cli/lib/diff-plugin.ts +346 -0
  78. package/src/cli/lib/install-from-github.ts +105 -17
  79. package/src/cli/lib/merge-plugin-tree.ts +228 -0
  80. package/src/cli/lib/plugin-fingerprint.ts +14 -0
  81. package/src/cli/lib/upgrade-plugin.ts +270 -10
  82. package/src/cli/program.ts +0 -2
  83. package/src/config/bundled-skills/subagent/SKILL.md +4 -0
  84. package/src/config/bundled-skills/subagent/TOOLS.json +4 -0
  85. package/src/config/bundled-skills/workflows/SKILL.md +0 -1
  86. package/src/config/bundled-tool-registry.ts +2 -7
  87. package/src/config/call-site-defaults.ts +12 -2
  88. package/src/config/feature-flag-registry.json +1 -17
  89. package/src/config/inference-profile-validation.ts +26 -0
  90. package/src/config/loader.ts +4 -0
  91. package/src/config/profile-order.ts +28 -0
  92. package/src/config/schemas/elevenlabs.ts +0 -1
  93. package/src/config/schemas/platform.ts +0 -8
  94. package/src/config/seed-inference-profiles.ts +25 -20
  95. package/src/contacts/contact-store.ts +87 -96
  96. package/src/contacts/contacts-write.ts +5 -21
  97. package/src/context/compactor.ts +2 -2
  98. package/src/credential-execution/process-manager.ts +55 -14
  99. package/src/credential-execution/prompted-credential.ts +2 -3
  100. package/src/daemon/config-watcher.ts +0 -4
  101. package/src/daemon/conversation-agent-loop.ts +15 -4
  102. package/src/daemon/conversation-slash.ts +2 -23
  103. package/src/daemon/conversation-tool-setup.ts +11 -3
  104. package/src/daemon/conversation.ts +2 -0
  105. package/src/daemon/handlers/config-channels.ts +20 -16
  106. package/src/daemon/handlers/config-slack-channel.ts +2 -3
  107. package/src/daemon/lifecycle.ts +0 -7
  108. package/src/daemon/message-types/conversations.ts +3 -3
  109. package/src/daemon/message-types/sync.ts +0 -1
  110. package/src/daemon/orphan-reaper.test.ts +0 -19
  111. package/src/daemon/orphan-reaper.ts +2 -24
  112. package/src/daemon/server.ts +0 -10
  113. package/src/home/relationship-state.ts +2 -4
  114. package/src/memory/__tests__/memory-retrospective-job.test.ts +195 -401
  115. package/src/memory/bookmark-crud.ts +1 -2
  116. package/src/memory/db-init.ts +7 -17
  117. package/src/memory/embedding-backend.ts +23 -0
  118. package/src/memory/embedding-billing-breaker.ts +96 -0
  119. package/src/memory/jobs-store.ts +25 -13
  120. package/src/memory/jobs-worker.ts +52 -0
  121. package/src/memory/memory-retrospective-constants.ts +4 -4
  122. package/src/memory/memory-retrospective-job.ts +19 -227
  123. package/src/memory/migrations/291-contact-channels-renormalize-addresses.ts +62 -0
  124. package/src/memory/migrations/__tests__/291-contact-channels-renormalize-addresses.test.ts +311 -0
  125. package/src/memory/migrations/__tests__/run-migrations.test.ts +52 -0
  126. package/src/memory/migrations/index.ts +1 -0
  127. package/src/memory/migrations/run-migrations.ts +41 -0
  128. package/src/memory/migrations/validate-migration-state.ts +1 -1
  129. package/src/memory/schema/contacts.ts +0 -4
  130. package/src/messaging/providers/slack/adapter.ts +1 -1
  131. package/src/notifications/adapters/shared.ts +29 -0
  132. package/src/notifications/adapters/slack.ts +5 -32
  133. package/src/notifications/adapters/telegram.ts +2 -20
  134. package/src/notifications/broadcaster.ts +10 -1
  135. package/src/notifications/home-feed-side-effect.ts +4 -3
  136. package/src/notifications/notification-utils.ts +17 -19
  137. package/src/notifications/types.ts +7 -0
  138. package/src/oauth/AGENTS.md +5 -24
  139. package/src/plugin-api/constants.ts +1 -1
  140. package/src/plugin-api/index.ts +6 -1
  141. package/src/plugin-api/model-profiles.ts +33 -0
  142. package/src/plugin-api/types.ts +50 -2
  143. package/src/plugins/defaults/index.ts +25 -0
  144. package/src/plugins/defaults/memory-v3-shadow/__tests__/maintain-job.test.ts +54 -2
  145. package/src/plugins/defaults/memory-v3-shadow/maintain-job.ts +107 -7
  146. package/src/plugins/defaults/surface-completion-nudge/hooks/post-model-call.ts +276 -0
  147. package/src/plugins/defaults/surface-completion-nudge/hooks/stop.ts +22 -0
  148. package/src/plugins/defaults/surface-completion-nudge/nudge-state-store.ts +46 -0
  149. package/src/plugins/defaults/surface-completion-nudge/package.json +14 -0
  150. package/src/plugins/defaults/task-progress-nudge/hooks/post-tool-use.ts +1 -1
  151. package/src/prompts/persona-resolver.ts +2 -2
  152. package/src/runtime/AGENTS.md +0 -1
  153. package/src/runtime/actor-trust-resolver.ts +12 -44
  154. package/src/runtime/btw-sidechain.ts +3 -6
  155. package/src/runtime/channel-approval-types.ts +18 -45
  156. package/src/runtime/channel-invite-transports/telegram.ts +4 -4
  157. package/src/runtime/channel-verification-service.ts +4 -3
  158. package/src/runtime/invite-redemption-service.ts +3 -3
  159. package/src/runtime/routes/__tests__/plugins-routes.test.ts +218 -1
  160. package/src/runtime/routes/app-routes.ts +1 -1
  161. package/src/runtime/routes/approval-strategies/guardian-callback-strategy.ts +2 -2
  162. package/src/runtime/routes/assets/vellum-design-system.css +1959 -0
  163. package/src/runtime/routes/btw-routes.ts +1 -27
  164. package/src/runtime/routes/conversation-compaction-routes.ts +1 -1
  165. package/src/runtime/routes/conversation-routes.ts +2 -2
  166. package/src/runtime/routes/credential-routes.ts +40 -16
  167. package/src/runtime/routes/empty-state-greeting-cache.ts +1 -2
  168. package/src/runtime/routes/identity-routes.ts +1 -296
  169. package/src/runtime/routes/inbound-stages/acl-enforcement.ts +1 -1
  170. package/src/runtime/routes/plugins-routes.ts +171 -5
  171. package/src/runtime/routes/schedule-routes.ts +0 -22
  172. package/src/runtime/routes/workflow-routes.test.ts +4 -43
  173. package/src/runtime/routes/workflow-routes.ts +0 -28
  174. package/src/runtime/routes/workspace-greetings.ts +55 -0
  175. package/src/runtime/sync/resource-sync-events.ts +1 -11
  176. package/src/schedule/inference-profile.ts +2 -14
  177. package/src/subagent/manager.ts +6 -0
  178. package/src/subagent/types.ts +6 -0
  179. package/src/tools/AGENTS.md +3 -3
  180. package/src/tools/browser/browser-execution.ts +1 -1
  181. package/src/tools/network/web-search-error.ts +1 -1
  182. package/src/tools/permission-checker.ts +1 -1
  183. package/src/tools/schedule/create.ts +3 -9
  184. package/src/tools/schedule/update.ts +2 -10
  185. package/src/tools/side-effects.ts +2 -17
  186. package/src/tools/skills/execute.ts +34 -0
  187. package/src/tools/subagent/spawn.ts +34 -9
  188. package/src/tools/tool-approval-handler.ts +1 -3
  189. package/src/tools/tool-manifest.ts +0 -2
  190. package/src/tools/ui-surface/definitions.ts +39 -1
  191. package/src/tools/workflows/run-workflow.test.ts +8 -18
  192. package/src/util/platform.ts +2 -2
  193. package/src/workflows/capabilities.ts +2 -3
  194. package/src/workflows/run-manager.test.ts +0 -25
  195. package/src/workflows/run-manager.ts +2 -24
  196. package/src/__tests__/app-control-no-global-cgevent.test.ts +0 -98
  197. package/src/__tests__/credential-security-e2e.test.ts +0 -362
  198. package/src/__tests__/credential-vault-unit.test.ts +0 -1528
  199. package/src/__tests__/credential-vault.test.ts +0 -1706
  200. package/src/__tests__/identity-intro-cache.test.ts +0 -315
  201. package/src/__tests__/secret-onetime-send.test.ts +0 -182
  202. package/src/cli/commands/__tests__/task.test.ts +0 -914
  203. package/src/cli/commands/task.ts +0 -771
  204. package/src/config/bundled-skills/personal-page/SKILL.md +0 -57
  205. package/src/config/bundled-skills/personal-page/TOOLS.json +0 -27
  206. package/src/config/bundled-skills/personal-page/tools/app-refresh.ts +0 -17
  207. package/src/config/preloaded-apps/personal-page/src/components/About.tsx +0 -22
  208. package/src/config/preloaded-apps/personal-page/src/components/App.tsx +0 -16
  209. package/src/config/preloaded-apps/personal-page/src/components/Features.tsx +0 -77
  210. package/src/config/preloaded-apps/personal-page/src/components/Hero.tsx +0 -57
  211. package/src/config/preloaded-apps/personal-page/src/components/Pending.tsx +0 -28
  212. package/src/config/preloaded-apps/personal-page/src/components/animations.tsx +0 -234
  213. package/src/config/preloaded-apps/personal-page/src/components/icons.tsx +0 -48
  214. package/src/config/preloaded-apps/personal-page/src/components/media.ts +0 -16
  215. package/src/config/preloaded-apps/personal-page/src/index.html +0 -20
  216. package/src/config/preloaded-apps/personal-page/src/main.tsx +0 -7
  217. package/src/config/preloaded-apps/personal-page/src/profile-data.ts +0 -82
  218. package/src/config/preloaded-apps/personal-page/src/styles.css +0 -759
  219. package/src/memory/__tests__/preloaded-apps.test.ts +0 -85
  220. package/src/memory/preloaded-apps.ts +0 -116
  221. package/src/runtime/routes/identity-intro-cache.ts +0 -172
  222. package/src/tools/credentials/vault.ts +0 -712
@@ -1,759 +0,0 @@
1
- * {
2
- font-family:
3
- "Almarai",
4
- -apple-system,
5
- BlinkMacSystemFont,
6
- "Segoe UI",
7
- "Roboto",
8
- "Oxygen",
9
- "Ubuntu",
10
- "Cantarell",
11
- sans-serif;
12
- box-sizing: border-box;
13
- margin: 0;
14
- padding: 0;
15
- }
16
-
17
- html,
18
- body,
19
- #app {
20
- background: #000;
21
- color: #e1e0cc;
22
- min-height: 100dvh;
23
- width: 100%;
24
- overflow-x: hidden;
25
- }
26
-
27
- body {
28
- -webkit-font-smoothing: antialiased;
29
- -moz-osx-font-smoothing: grayscale;
30
- }
31
-
32
- .serif-italic {
33
- font-family: "Instrument Serif", serif;
34
- font-style: italic;
35
- font-weight: 400;
36
- }
37
-
38
- /* === Noise textures === */
39
- .noise-overlay {
40
- position: absolute;
41
- inset: 0;
42
- pointer-events: none;
43
- background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
44
- opacity: 0.7;
45
- mix-blend-mode: overlay;
46
- z-index: 2;
47
- }
48
-
49
- .bg-noise {
50
- background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
51
- }
52
-
53
- /* === Animations === */
54
- @keyframes pullUp {
55
- from {
56
- transform: translateY(20px);
57
- opacity: 0;
58
- }
59
- to {
60
- transform: translateY(0);
61
- opacity: 1;
62
- }
63
- }
64
- @keyframes fadeUp {
65
- from {
66
- transform: translateY(20px);
67
- opacity: 0;
68
- }
69
- to {
70
- transform: translateY(0);
71
- opacity: 1;
72
- }
73
- }
74
-
75
- .pull-word {
76
- display: inline-block;
77
- opacity: 0;
78
- transform: translateY(20px);
79
- will-change: transform, opacity;
80
- }
81
- .pull-in .pull-word {
82
- animation: pullUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
83
- }
84
-
85
- .hero-fade {
86
- opacity: 0;
87
- transform: translateY(20px);
88
- animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
89
- }
90
-
91
- /* === HERO === */
92
- .hero {
93
- height: 100vh;
94
- height: 100dvh;
95
- width: 100%;
96
- padding: 16px;
97
- position: relative;
98
- }
99
- @media (min-width: 768px) {
100
- .hero {
101
- padding: 24px;
102
- }
103
- }
104
-
105
- .hero-frame {
106
- position: relative;
107
- width: 100%;
108
- height: 100%;
109
- border-radius: 16px;
110
- overflow: hidden;
111
- background: #050505;
112
- }
113
- @media (min-width: 768px) {
114
- .hero-frame {
115
- border-radius: 32px;
116
- }
117
- }
118
-
119
- /* Cinematic backdrop: warm light-leaks drifting over near-black, in place
120
- of a video loop (the sandboxed iframe can't load daemon-served media). */
121
- .hero-backdrop {
122
- position: absolute;
123
- inset: 0;
124
- z-index: 1;
125
- background: #050505;
126
- overflow: hidden;
127
- }
128
- .hero-backdrop::before,
129
- .hero-backdrop::after {
130
- content: "";
131
- position: absolute;
132
- inset: -35%;
133
- background:
134
- radial-gradient(
135
- 42% 50% at 24% 32%,
136
- rgba(225, 224, 204, 0.16) 0%,
137
- transparent 70%
138
- ),
139
- radial-gradient(
140
- 36% 46% at 76% 22%,
141
- rgba(222, 219, 200, 0.09) 0%,
142
- transparent 70%
143
- ),
144
- radial-gradient(
145
- 52% 62% at 62% 82%,
146
- rgba(125, 115, 80, 0.22) 0%,
147
- transparent 70%
148
- );
149
- animation: backdropDrift 38s ease-in-out infinite alternate;
150
- will-change: transform;
151
- }
152
- .hero-backdrop::after {
153
- background:
154
- radial-gradient(
155
- 46% 56% at 72% 64%,
156
- rgba(225, 224, 204, 0.1) 0%,
157
- transparent 70%
158
- ),
159
- radial-gradient(
160
- 32% 42% at 18% 76%,
161
- rgba(155, 145, 105, 0.14) 0%,
162
- transparent 70%
163
- );
164
- animation-duration: 52s;
165
- animation-delay: -18s;
166
- }
167
- @keyframes backdropDrift {
168
- from {
169
- transform: translate3d(-4%, -3%, 0) scale(1) rotate(0deg);
170
- }
171
- to {
172
- transform: translate3d(4%, 3%, 0) scale(1.18) rotate(5deg);
173
- }
174
- }
175
- @media (prefers-reduced-motion: reduce) {
176
- .hero-backdrop::before,
177
- .hero-backdrop::after,
178
- .card-backdrop::before {
179
- animation: none;
180
- }
181
- }
182
-
183
- .hero-gradient {
184
- position: absolute;
185
- inset: 0;
186
- background: linear-gradient(
187
- to bottom,
188
- rgba(0, 0, 0, 0.3) 0%,
189
- rgba(0, 0, 0, 0) 35%,
190
- rgba(0, 0, 0, 0.65) 100%
191
- );
192
- z-index: 3;
193
- pointer-events: none;
194
- }
195
-
196
- .navbar {
197
- position: absolute;
198
- top: 0;
199
- left: 50%;
200
- transform: translateX(-50%);
201
- background: #000;
202
- border-bottom-left-radius: 16px;
203
- border-bottom-right-radius: 16px;
204
- padding: 8px 16px;
205
- display: flex;
206
- align-items: center;
207
- gap: 12px;
208
- z-index: 10;
209
- }
210
- @media (min-width: 640px) {
211
- .navbar {
212
- gap: 24px;
213
- }
214
- }
215
- @media (min-width: 768px) {
216
- .navbar {
217
- gap: 48px;
218
- padding: 10px 32px;
219
- border-bottom-left-radius: 24px;
220
- border-bottom-right-radius: 24px;
221
- }
222
- }
223
- @media (min-width: 1024px) {
224
- .navbar {
225
- gap: 56px;
226
- }
227
- }
228
-
229
- .navbar a {
230
- color: rgba(225, 224, 204, 0.8);
231
- text-decoration: none;
232
- font-size: 10px;
233
- transition: color 0.2s ease;
234
- white-space: nowrap;
235
- letter-spacing: 0.02em;
236
- }
237
- .navbar a:hover {
238
- color: #e1e0cc;
239
- }
240
- @media (min-width: 640px) {
241
- .navbar a {
242
- font-size: 12px;
243
- }
244
- }
245
- @media (min-width: 768px) {
246
- .navbar a {
247
- font-size: 14px;
248
- }
249
- }
250
-
251
- .hero-content {
252
- position: absolute;
253
- bottom: 0;
254
- left: 0;
255
- right: 0;
256
- z-index: 5;
257
- padding: 20px;
258
- display: grid;
259
- grid-template-columns: repeat(12, 1fr);
260
- gap: 20px;
261
- align-items: end;
262
- }
263
- @media (min-width: 768px) {
264
- .hero-content {
265
- padding: 36px;
266
- gap: 24px;
267
- }
268
- }
269
-
270
- .hero-title-col {
271
- grid-column: 1 / -1;
272
- }
273
- @media (min-width: 768px) {
274
- .hero-title-col {
275
- grid-column: 1 / span 8;
276
- }
277
- }
278
-
279
- .hero-desc-col {
280
- grid-column: 1 / -1;
281
- display: flex;
282
- flex-direction: column;
283
- gap: 20px;
284
- padding-bottom: 8px;
285
- }
286
- @media (min-width: 768px) {
287
- .hero-desc-col {
288
- grid-column: 9 / span 4;
289
- padding-bottom: 24px;
290
- }
291
- }
292
-
293
- .hero-title {
294
- color: #e1e0cc;
295
- font-size: 26vw;
296
- font-weight: 500;
297
- line-height: 0.85;
298
- letter-spacing: -0.07em;
299
- display: inline-block;
300
- position: relative;
301
- }
302
- @media (min-width: 640px) {
303
- .hero-title {
304
- font-size: 24vw;
305
- }
306
- }
307
- @media (min-width: 768px) {
308
- .hero-title {
309
- font-size: 22vw;
310
- }
311
- }
312
- @media (min-width: 1024px) {
313
- .hero-title {
314
- font-size: 20vw;
315
- }
316
- }
317
- @media (min-width: 1280px) {
318
- .hero-title {
319
- font-size: 19vw;
320
- }
321
- }
322
- @media (min-width: 1536px) {
323
- .hero-title {
324
- font-size: 20vw;
325
- }
326
- }
327
-
328
- .hero-asterisk {
329
- position: absolute;
330
- top: 0.65em;
331
- right: -0.3em;
332
- font-size: 0.31em;
333
- font-weight: 400;
334
- line-height: 1;
335
- }
336
-
337
- .hero-desc {
338
- color: rgba(222, 219, 200, 0.7);
339
- font-size: 12px;
340
- line-height: 1.2;
341
- letter-spacing: -0.005em;
342
- }
343
- @media (min-width: 640px) {
344
- .hero-desc {
345
- font-size: 14px;
346
- }
347
- }
348
- @media (min-width: 768px) {
349
- .hero-desc {
350
- font-size: 16px;
351
- }
352
- }
353
-
354
- .cta-btn {
355
- display: inline-flex;
356
- align-items: center;
357
- gap: 8px;
358
- background: #dedbc8;
359
- color: #000;
360
- border-radius: 9999px;
361
- padding: 6px 6px 6px 22px;
362
- font-weight: 500;
363
- font-size: 14px;
364
- border: none;
365
- cursor: pointer;
366
- align-self: flex-start;
367
- transition: gap 0.3s ease;
368
- font-family: inherit;
369
- }
370
- .cta-btn:hover {
371
- gap: 12px;
372
- }
373
- @media (min-width: 640px) {
374
- .cta-btn {
375
- font-size: 16px;
376
- }
377
- }
378
-
379
- .cta-circle {
380
- background: #000;
381
- border-radius: 9999px;
382
- width: 36px;
383
- height: 36px;
384
- display: inline-flex;
385
- align-items: center;
386
- justify-content: center;
387
- color: #e1e0cc;
388
- transition: transform 0.3s ease;
389
- flex-shrink: 0;
390
- }
391
- .cta-btn:hover .cta-circle {
392
- transform: scale(1.1);
393
- }
394
- @media (min-width: 640px) {
395
- .cta-circle {
396
- width: 40px;
397
- height: 40px;
398
- }
399
- }
400
-
401
- /* === ABOUT === */
402
- .about {
403
- background: #000;
404
- padding: 80px 16px;
405
- }
406
- @media (min-width: 768px) {
407
- .about {
408
- padding: 140px 32px;
409
- }
410
- }
411
-
412
- .about-card {
413
- background: #101010;
414
- text-align: center;
415
- max-width: 72rem;
416
- margin: 0 auto;
417
- padding: 64px 24px;
418
- border-radius: 18px;
419
- }
420
- @media (min-width: 768px) {
421
- .about-card {
422
- padding: 140px 56px;
423
- border-radius: 28px;
424
- }
425
- }
426
-
427
- .about-label {
428
- color: #dedbc8;
429
- font-size: 10px;
430
- margin-bottom: 36px;
431
- letter-spacing: 0.18em;
432
- text-transform: uppercase;
433
- }
434
- @media (min-width: 640px) {
435
- .about-label {
436
- font-size: 12px;
437
- }
438
- }
439
-
440
- .about-heading {
441
- font-size: 30px;
442
- max-width: 48rem;
443
- margin: 0 auto;
444
- line-height: 0.95;
445
- font-weight: 400;
446
- color: #dedbc8;
447
- }
448
- @media (min-width: 640px) {
449
- .about-heading {
450
- font-size: 36px;
451
- line-height: 0.9;
452
- }
453
- }
454
- @media (min-width: 768px) {
455
- .about-heading {
456
- font-size: 48px;
457
- }
458
- }
459
- @media (min-width: 1024px) {
460
- .about-heading {
461
- font-size: 60px;
462
- }
463
- }
464
- @media (min-width: 1280px) {
465
- .about-heading {
466
- font-size: 72px;
467
- }
468
- }
469
-
470
- .about-heading .pull-word {
471
- margin-right: 0.2em;
472
- }
473
-
474
- .about-body {
475
- color: #dedbc8;
476
- font-size: 13px;
477
- margin-top: 48px;
478
- max-width: 44rem;
479
- margin-left: auto;
480
- margin-right: auto;
481
- line-height: 1.55;
482
- }
483
- @media (min-width: 640px) {
484
- .about-body {
485
- font-size: 15px;
486
- }
487
- }
488
- @media (min-width: 768px) {
489
- .about-body {
490
- font-size: 17px;
491
- }
492
- }
493
-
494
- .about-letter {
495
- display: inline;
496
- opacity: 0.2;
497
- transition: opacity 0.15s linear;
498
- }
499
-
500
- /* === FEATURES === */
501
- .features {
502
- background: #000;
503
- min-height: 100vh;
504
- position: relative;
505
- padding: 80px 16px;
506
- overflow: hidden;
507
- }
508
- @media (min-width: 768px) {
509
- .features {
510
- padding: 120px 32px;
511
- }
512
- }
513
-
514
- .features::before {
515
- content: "";
516
- position: absolute;
517
- inset: 0;
518
- opacity: 0.15;
519
- pointer-events: none;
520
- background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
521
- }
522
-
523
- .features-inner {
524
- position: relative;
525
- max-width: 90rem;
526
- margin: 0 auto;
527
- }
528
-
529
- .features-header {
530
- max-width: 56rem;
531
- margin: 0 auto 56px;
532
- text-align: center;
533
- font-size: 20px;
534
- line-height: 1.1;
535
- font-weight: 400;
536
- }
537
- @media (min-width: 640px) {
538
- .features-header {
539
- font-size: 24px;
540
- }
541
- }
542
- @media (min-width: 768px) {
543
- .features-header {
544
- font-size: 30px;
545
- margin-bottom: 72px;
546
- }
547
- }
548
- @media (min-width: 1024px) {
549
- .features-header {
550
- font-size: 36px;
551
- }
552
- }
553
-
554
- .features-header .line1 {
555
- color: #dedbc8;
556
- }
557
- .features-header .line2 {
558
- color: #6b7280;
559
- }
560
- .features-header .break {
561
- display: block;
562
- height: 0.1em;
563
- }
564
-
565
- .feature-grid {
566
- display: grid;
567
- grid-template-columns: 1fr;
568
- gap: 12px;
569
- }
570
- @media (min-width: 768px) {
571
- .feature-grid {
572
- grid-template-columns: repeat(2, 1fr);
573
- gap: 8px;
574
- }
575
- }
576
- @media (min-width: 1024px) {
577
- .feature-grid {
578
- grid-template-columns: repeat(4, 1fr);
579
- gap: 4px;
580
- height: 480px;
581
- }
582
- }
583
-
584
- .feature-card {
585
- background: #212121;
586
- border-radius: 18px;
587
- padding: 22px;
588
- display: flex;
589
- flex-direction: column;
590
- min-height: 380px;
591
- position: relative;
592
- overflow: hidden;
593
- opacity: 0;
594
- transform: scale(0.95);
595
- transition:
596
- opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
597
- transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
598
- }
599
- .feature-card.in {
600
- opacity: 1;
601
- transform: scale(1);
602
- }
603
-
604
- .feature-card.visual {
605
- padding: 0;
606
- background: #000;
607
- min-height: 380px;
608
- }
609
- .feature-card.visual .card-backdrop {
610
- position: absolute;
611
- inset: 0;
612
- overflow: hidden;
613
- }
614
- .feature-card.visual .card-backdrop::before {
615
- content: "";
616
- position: absolute;
617
- inset: -40%;
618
- background:
619
- radial-gradient(
620
- 48% 55% at 30% 30%,
621
- rgba(225, 224, 204, 0.18) 0%,
622
- transparent 70%
623
- ),
624
- radial-gradient(
625
- 40% 50% at 75% 75%,
626
- rgba(125, 115, 80, 0.26) 0%,
627
- transparent 70%
628
- );
629
- animation: backdropDrift 30s ease-in-out infinite alternate;
630
- will-change: transform;
631
- }
632
- .feature-card.visual .vlabel {
633
- position: relative;
634
- z-index: 2;
635
- margin-top: auto;
636
- padding: 22px;
637
- color: #e1e0cc;
638
- font-size: 18px;
639
- font-weight: 500;
640
- }
641
-
642
- .feature-icon {
643
- width: 40px;
644
- height: 40px;
645
- border-radius: 8px;
646
- object-fit: cover;
647
- background: #0a0a0a;
648
- }
649
- @media (min-width: 640px) {
650
- .feature-icon {
651
- width: 48px;
652
- height: 48px;
653
- }
654
- }
655
-
656
- .feature-num {
657
- color: #6b7280;
658
- font-size: 11px;
659
- margin-top: 16px;
660
- letter-spacing: 0.05em;
661
- }
662
-
663
- .feature-title {
664
- color: #dedbc8;
665
- font-size: 19px;
666
- font-weight: 500;
667
- margin-top: 4px;
668
- margin-bottom: 18px;
669
- }
670
-
671
- .feature-list {
672
- list-style: none;
673
- padding: 0;
674
- margin: 0 0 18px 0;
675
- display: flex;
676
- flex-direction: column;
677
- gap: 10px;
678
- }
679
-
680
- .feature-list li {
681
- display: flex;
682
- gap: 8px;
683
- align-items: flex-start;
684
- color: #9ca3af;
685
- font-size: 12.5px;
686
- line-height: 1.45;
687
- }
688
-
689
- .feature-list .check {
690
- flex-shrink: 0;
691
- margin-top: 2px;
692
- color: #dedbc8;
693
- }
694
-
695
- .learn-more {
696
- margin-top: auto;
697
- display: inline-flex;
698
- align-items: center;
699
- gap: 6px;
700
- color: #dedbc8;
701
- font-size: 13px;
702
- cursor: pointer;
703
- text-decoration: none;
704
- align-self: flex-start;
705
- }
706
-
707
- .learn-more svg {
708
- transform: rotate(-45deg);
709
- transition: transform 0.3s ease;
710
- }
711
- .learn-more:hover svg {
712
- transform: rotate(-45deg) translate(3px, -3px);
713
- }
714
-
715
- /* === PENDING (pre-research) === */
716
- .pending {
717
- position: relative;
718
- min-height: 100dvh;
719
- display: flex;
720
- align-items: center;
721
- justify-content: center;
722
- padding: 32px;
723
- overflow: hidden;
724
- }
725
-
726
- .pending-content {
727
- position: relative;
728
- z-index: 3;
729
- text-align: center;
730
- display: flex;
731
- flex-direction: column;
732
- align-items: center;
733
- gap: 20px;
734
- }
735
-
736
- .pending-label {
737
- font-size: 11px;
738
- font-weight: 700;
739
- letter-spacing: 0.3em;
740
- color: #6b7280;
741
- }
742
-
743
- .pending-heading {
744
- font-size: clamp(36px, 7vw, 72px);
745
- font-weight: 800;
746
- line-height: 1.1;
747
- color: #e1e0cc;
748
- }
749
-
750
- .pending-heading .serif-italic {
751
- font-weight: 400;
752
- }
753
-
754
- .pending-sub {
755
- max-width: 420px;
756
- font-size: 14px;
757
- line-height: 1.7;
758
- color: #9ca3af;
759
- }