@tokenoftrust/storefront-runner 0.1.0
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.
- package/LICENSE +58 -0
- package/README.md +40 -0
- package/apps/storefront/.dev.vars.example +41 -0
- package/apps/storefront/.env.example +24 -0
- package/apps/storefront/astro.config.mjs +245 -0
- package/apps/storefront/env.d.ts +155 -0
- package/apps/storefront/lib/ensure-preview-reconcile-secret.sh +31 -0
- package/apps/storefront/lib/resolve-cf-token.sh +48 -0
- package/apps/storefront/lib/resolve-tot-credentials.sh +69 -0
- package/apps/storefront/migrations/0000_baseline.sql +54 -0
- package/apps/storefront/migrations/0001_products_fts.sql +9 -0
- package/apps/storefront/migrations/README.md +54 -0
- package/apps/storefront/migrations/meta/0000_snapshot.json +347 -0
- package/apps/storefront/migrations/meta/0001_snapshot.json +347 -0
- package/apps/storefront/migrations/meta/_journal.json +20 -0
- package/apps/storefront/package.json +41 -0
- package/apps/storefront/public/brand/northwind-logo-dark.svg +4 -0
- package/apps/storefront/public/brand/northwind-logo-light.svg +4 -0
- package/apps/storefront/public/brand/northwind-og.svg +13 -0
- package/apps/storefront/public/favicon.svg +5 -0
- package/apps/storefront/public/js/dashboard-team.js +147 -0
- package/apps/storefront/public/js/dashboard-vendor-search.js +115 -0
- package/apps/storefront/src/components/Badge.astro +34 -0
- package/apps/storefront/src/components/Breadcrumbs.astro +45 -0
- package/apps/storefront/src/components/CollectionCard.astro +56 -0
- package/apps/storefront/src/components/EmptyState.astro +35 -0
- package/apps/storefront/src/components/Img.astro +68 -0
- package/apps/storefront/src/components/ProductCard.astro +228 -0
- package/apps/storefront/src/components/Section.astro +39 -0
- package/apps/storefront/src/components/Seo.astro +70 -0
- package/apps/storefront/src/components/WidgetFrame.astro +34 -0
- package/apps/storefront/src/components/auth/AuthBadge.astro +44 -0
- package/apps/storefront/src/components/chrome/AnnouncementBar.astro +108 -0
- package/apps/storefront/src/components/chrome/MegaMenu.astro +26 -0
- package/apps/storefront/src/components/chrome/NavDropdown.astro +116 -0
- package/apps/storefront/src/components/chrome/SiteFooter.astro +181 -0
- package/apps/storefront/src/components/chrome/SiteHeader.astro +181 -0
- package/apps/storefront/src/components/chrome/UtilityNav.astro +79 -0
- package/apps/storefront/src/components/commerce/FoxyLoader.astro +23 -0
- package/apps/storefront/src/components/commerce/PriceDisplay.astro +91 -0
- package/apps/storefront/src/components/commerce/ProductCarousel.astro +197 -0
- package/apps/storefront/src/components/commerce/ProductGrid.astro +75 -0
- package/apps/storefront/src/components/commerce/RatingStars.astro +58 -0
- package/apps/storefront/src/components/compliance/NicotineWarning.astro +33 -0
- package/apps/storefront/src/components/home/Hero.astro +164 -0
- package/apps/storefront/src/components/islands/AgeGate.tsx +105 -0
- package/apps/storefront/src/components/islands/ImageGallery.tsx +237 -0
- package/apps/storefront/src/components/islands/IsolatedAgeGate.tsx +73 -0
- package/apps/storefront/src/components/islands/MobileNav.tsx +239 -0
- package/apps/storefront/src/components/islands/QuickView.tsx +138 -0
- package/apps/storefront/src/components/islands/RecentlyViewed.tsx +122 -0
- package/apps/storefront/src/components/islands/SavedList.tsx +99 -0
- package/apps/storefront/src/components/islands/SearchTypeahead.tsx +248 -0
- package/apps/storefront/src/components/islands/VariantSelector.tsx +378 -0
- package/apps/storefront/src/components/marketing/CardGrid.astro +72 -0
- package/apps/storefront/src/components/marketing/CodeSample.astro +20 -0
- package/apps/storefront/src/components/marketing/CtaBand.astro +24 -0
- package/apps/storefront/src/components/marketing/Faq.astro +37 -0
- package/apps/storefront/src/components/marketing/Integrations.astro +63 -0
- package/apps/storefront/src/components/marketing/MarketingBlocks.astro +53 -0
- package/apps/storefront/src/components/marketing/MarketingCtas.astro +48 -0
- package/apps/storefront/src/components/marketing/MarketingHero.astro +72 -0
- package/apps/storefront/src/components/marketing/ProofStrip.astro +37 -0
- package/apps/storefront/src/components/marketing/SplitCompare.astro +53 -0
- package/apps/storefront/src/components/marketing/Steps.astro +36 -0
- package/apps/storefront/src/components/marketing/Testimonials.astro +38 -0
- package/apps/storefront/src/components/marketing/TrustBar.astro +22 -0
- package/apps/storefront/src/components/nav/Footer.astro +148 -0
- package/apps/storefront/src/components/nav/Header.astro +190 -0
- package/apps/storefront/src/components/plp/ActiveFilters.astro +79 -0
- package/apps/storefront/src/components/plp/FacetSidebar.astro +146 -0
- package/apps/storefront/src/components/plp/Pagination.astro +99 -0
- package/apps/storefront/src/components/plp/SortSelect.astro +64 -0
- package/apps/storefront/src/config/devTenants.ts +16 -0
- package/apps/storefront/src/config/kvTenantResolver.ts +87 -0
- package/apps/storefront/src/config/resolver.ts +46 -0
- package/apps/storefront/src/config/tenants.ts +193 -0
- package/apps/storefront/src/layouts/Layout.astro +303 -0
- package/apps/storefront/src/lib/analytics/index.ts +47 -0
- package/apps/storefront/src/lib/auth/brokerAssertion.ts +136 -0
- package/apps/storefront/src/lib/auth/devAuth.ts +90 -0
- package/apps/storefront/src/lib/auth/gatePage.ts +81 -0
- package/apps/storefront/src/lib/auth/identityToken.ts +341 -0
- package/apps/storefront/src/lib/auth/loginGate.ts +107 -0
- package/apps/storefront/src/lib/auth/route.ts +146 -0
- package/apps/storefront/src/lib/auth/session.ts +203 -0
- package/apps/storefront/src/lib/auth/totAccessClient.ts +503 -0
- package/apps/storefront/src/lib/basePath.ts +41 -0
- package/apps/storefront/src/lib/cfImage.ts +55 -0
- package/apps/storefront/src/lib/chrome/model.ts +65 -0
- package/apps/storefront/src/lib/colors.ts +97 -0
- package/apps/storefront/src/lib/content-edit/client.ts +230 -0
- package/apps/storefront/src/lib/content-edit/index.ts +14 -0
- package/apps/storefront/src/lib/content-edit/route.ts +25 -0
- package/apps/storefront/src/lib/content-edit/types.ts +19 -0
- package/apps/storefront/src/lib/cspStaticHashes.ts +24 -0
- package/apps/storefront/src/lib/d1/catalog.ts +289 -0
- package/apps/storefront/src/lib/dashboard/staffAdmission.ts +43 -0
- package/apps/storefront/src/lib/dashboard/staffVendorAccess.ts +449 -0
- package/apps/storefront/src/lib/dashboard/tenantSelection.ts +136 -0
- package/apps/storefront/src/lib/dashboard/vendorQuery.ts +61 -0
- package/apps/storefront/src/lib/demoGate.ts +113 -0
- package/apps/storefront/src/lib/dev/ai-widget-client.js +127 -0
- package/apps/storefront/src/lib/dev/cliSignInCode.ts +132 -0
- package/apps/storefront/src/lib/diag/redact.ts +20 -0
- package/apps/storefront/src/lib/edgeCache.ts +128 -0
- package/apps/storefront/src/lib/email/magicLinkInviteEmail.ts +62 -0
- package/apps/storefront/src/lib/env.ts +60 -0
- package/apps/storefront/src/lib/fixtures/sampleProducts.ts +130 -0
- package/apps/storefront/src/lib/format.ts +29 -0
- package/apps/storefront/src/lib/foxyCommerce.ts +49 -0
- package/apps/storefront/src/lib/imageAttrs.ts +55 -0
- package/apps/storefront/src/lib/jsonld.ts +136 -0
- package/apps/storefront/src/lib/maintenance.ts +71 -0
- package/apps/storefront/src/lib/memoryKv.ts +32 -0
- package/apps/storefront/src/lib/messaging/messagesClient.ts +143 -0
- package/apps/storefront/src/lib/placeholder.ts +99 -0
- package/apps/storefront/src/lib/previewReload.ts +125 -0
- package/apps/storefront/src/lib/rawMarketingHtml.ts +133 -0
- package/apps/storefront/src/lib/search/index.ts +74 -0
- package/apps/storefront/src/lib/sections.ts +129 -0
- package/apps/storefront/src/lib/securityHeaders.ts +31 -0
- package/apps/storefront/src/lib/storyblok/content-model.ts +289 -0
- package/apps/storefront/src/lib/storyblok/provider.ts +524 -0
- package/apps/storefront/src/lib/tenantRouting.ts +91 -0
- package/apps/storefront/src/lib/tot/ToTClient.ts +177 -0
- package/apps/storefront/src/lib/tot/d1Client.ts +62 -0
- package/apps/storefront/src/lib/tot/query.ts +187 -0
- package/apps/storefront/src/lib/tot/totClientInterface.ts +30 -0
- package/apps/storefront/src/lib/url.ts +119 -0
- package/apps/storefront/src/lib/wishlist.ts +63 -0
- package/apps/storefront/src/middleware/index.ts +413 -0
- package/apps/storefront/src/pages/404.astro +61 -0
- package/apps/storefront/src/pages/[...slug].astro +90 -0
- package/apps/storefront/src/pages/api/auth/logout.ts +21 -0
- package/apps/storefront/src/pages/api/auth/magic-exchange.ts +107 -0
- package/apps/storefront/src/pages/api/auth/send.ts +85 -0
- package/apps/storefront/src/pages/api/auth/verify.ts +135 -0
- package/apps/storefront/src/pages/api/cache-purge.ts +44 -0
- package/apps/storefront/src/pages/api/content-edit/ai-edit.ts +64 -0
- package/apps/storefront/src/pages/api/csp-report.ts +25 -0
- package/apps/storefront/src/pages/api/dashboard/enter-vendor.ts +124 -0
- package/apps/storefront/src/pages/api/dashboard/vendor-search.ts +120 -0
- package/apps/storefront/src/pages/api/dev/cli-signin-code.ts +44 -0
- package/apps/storefront/src/pages/api/newsletter.ts +104 -0
- package/apps/storefront/src/pages/api/request-access.ts +172 -0
- package/apps/storefront/src/pages/auth/login.astro +149 -0
- package/apps/storefront/src/pages/auth/magic.astro +105 -0
- package/apps/storefront/src/pages/capabilities.astro +292 -0
- package/apps/storefront/src/pages/collections/[handle].astro +154 -0
- package/apps/storefront/src/pages/collections/index.astro +59 -0
- package/apps/storefront/src/pages/dashboard/[appDomain]/index.astro +100 -0
- package/apps/storefront/src/pages/dashboard/[appDomain]/team.astro +154 -0
- package/apps/storefront/src/pages/dashboard/index.astro +160 -0
- package/apps/storefront/src/pages/dev.astro +653 -0
- package/apps/storefront/src/pages/index.astro +290 -0
- package/apps/storefront/src/pages/llms.txt.ts +92 -0
- package/apps/storefront/src/pages/products/[handle].astro +443 -0
- package/apps/storefront/src/pages/robots.txt.ts +24 -0
- package/apps/storefront/src/pages/saved.astro +35 -0
- package/apps/storefront/src/pages/search.astro +150 -0
- package/apps/storefront/src/pages/sitemap.xml.ts +78 -0
- package/apps/storefront/src/pages/style-guide/[tenant]/[theme].astro +646 -0
- package/apps/storefront/src/pages/style-guide/[tenant]/index.astro +85 -0
- package/apps/storefront/src/pages/style-guide/index.astro +94 -0
- package/apps/storefront/src/pages/tenants/[id]/[...path].ts +57 -0
- package/apps/storefront/src/styles/global.css +277 -0
- package/apps/storefront/src/themes/reference.ts +61 -0
- package/apps/storefront/src/themes/schema.ts +111 -0
- package/apps/storefront/src/themes/tenants/index.ts +51 -0
- package/apps/storefront/tsconfig.json +16 -0
- package/apps/storefront/vitest.config.ts +22 -0
- package/apps/storefront/wrangler.toml +175 -0
- package/package.json +23 -0
- package/packages/public-runtime/LICENSE +58 -0
- package/packages/public-runtime/package.json +22 -0
- package/packages/public-runtime/src/binary-path.ts +68 -0
- package/packages/public-runtime/src/capabilities.ts +89 -0
- package/packages/public-runtime/src/catalog-api.ts +81 -0
- package/packages/public-runtime/src/catalog-d1.ts +192 -0
- package/packages/public-runtime/src/csp.ts +109 -0
- package/packages/public-runtime/src/customization-preview.ts +197 -0
- package/packages/public-runtime/src/customization-reconcile.ts +63 -0
- package/packages/public-runtime/src/customization-runtime.ts +157 -0
- package/packages/public-runtime/src/customization-scripts.ts +64 -0
- package/packages/public-runtime/src/customization-versioning.ts +95 -0
- package/packages/public-runtime/src/foxy.ts +184 -0
- package/packages/public-runtime/src/index.ts +30 -0
- package/packages/public-runtime/src/product.ts +159 -0
- package/packages/public-runtime/src/search.ts +45 -0
- package/packages/public-runtime/src/tenant-assets.ts +444 -0
- package/packages/public-runtime/src/tenant.ts +243 -0
- package/packages/public-runtime/tsconfig.json +8 -0
- package/packages/public-runtime/vitest.config.ts +8 -0
- package/pnpm-workspace.yaml +7 -0
- package/scripts/build/copy-tenant-assets.mjs +69 -0
- package/scripts/tot-dev.mjs +439 -0
- package/tenants/bigdvapor/content/blog.json +52 -0
- package/tenants/bigdvapor/content/chrome.html +149 -0
- package/tenants/bigdvapor/content/chrome.json +47 -0
- package/tenants/bigdvapor/content/home.html +463 -0
- package/tenants/bigdvapor/content/home.json +73 -0
- package/tenants/bigdvapor/content/pages/about.json +5 -0
- package/tenants/bigdvapor/content/pages/privacy.json +6 -0
- package/tenants/bigdvapor/content/pages/shipping-returns.json +6 -0
- package/tenants/bigdvapor/content/pages-html/blogs/news.html +86 -0
- package/tenants/bigdvapor/content/pages-html/pages/about-us.html +106 -0
- package/tenants/bigdvapor/content/pages-html/pages/contact-us.html +61 -0
- package/tenants/bigdvapor/content/pages-html/pages/privacy-policy.html +72 -0
- package/tenants/bigdvapor/content/pages-html/pages/shipping-returns.html +172 -0
- package/tenants/bigdvapor/content/themes/bigd-navy.json +109 -0
- package/tenants/bigdvapor/public/img/brands/adjust-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/again-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/al-fakher-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/arro-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/cookies-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/core-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/cyclone-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/dinner-lady-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/extre-bar-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/fifty-bar-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/firerose-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/flavor-beast-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/foger-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/kk-energy-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/kumi-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/lost-vape-dispoable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/melo-labs-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/mixo-vape-disposable.webp +0 -0
- package/tenants/bigdvapor/public/img/brands/one-tank-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/oxbar-vape-disposable.webp +0 -0
- package/tenants/bigdvapor/public/img/brands/pillow-talk-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/pod-king-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/raz-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/hero-texas.jpg +0 -0
- package/tenants/bigdvapor/public/img/og.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/AdobeStock_202106312_web.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/CREW_web.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/Hero-Image.jpg +0 -0
- package/tenants/bigdvapor/public/img/tiles/adjust.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/again.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/al-fakher.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/arro.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/cookies.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/core.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/cyclone.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/disposables.svg +23 -0
- package/tenants/bigdvapor/public/logo-wordmark.png +0 -0
- package/tenants/bigdvapor/public/pages/home.css +118 -0
- package/tenants/bigdvapor/public/pages/mkt.css +185 -0
- package/tenants/bigdvapor/public/pages/page.css +148 -0
- package/tenants/bigdvapor/public/themes/bigd-navy.css +73 -0
- package/tenants/bigdvapor/theme.json +12 -0
- package/tenants/giantvapes/content/chrome.html +152 -0
- package/tenants/giantvapes/content/chrome.json +94 -0
- package/tenants/giantvapes/content/home.html +194 -0
- package/tenants/giantvapes/content/home.json +50 -0
- package/tenants/giantvapes/content/pages/about.json +10 -0
- package/tenants/giantvapes/content/pages/privacy.json +6 -0
- package/tenants/giantvapes/content/pages/shipping-returns.json +6 -0
- package/tenants/giantvapes/content/pages-html/blogs/news.html +68 -0
- package/tenants/giantvapes/content/pages-html/pages/about-us.html +95 -0
- package/tenants/giantvapes/content/pages-html/pages/contact-us.html +68 -0
- package/tenants/giantvapes/content/pages-html/pages/privacy-policy.html +65 -0
- package/tenants/giantvapes/content/pages-html/pages/shipping-returns.html +77 -0
- package/tenants/giantvapes/content/themes/giant-navy.json +73 -0
- package/tenants/giantvapes/public/img/hero-suicide-bunny.jpg +0 -0
- package/tenants/giantvapes/public/img/hero.webp +0 -0
- package/tenants/giantvapes/public/img/og.jpg +0 -0
- package/tenants/giantvapes/public/logo-wordmark.png +0 -0
- package/tenants/giantvapes/public/pages/home.css +120 -0
- package/tenants/giantvapes/public/pages/mkt.css +185 -0
- package/tenants/giantvapes/public/pages/page.css +155 -0
- package/tenants/giantvapes/public/themes/giant-navy.css +76 -0
- package/tenants/giantvapes/theme.json +39 -0
- package/tenants/home/content/chrome.json +11 -0
- package/tenants/home/content/home.html +304 -0
- package/tenants/home/content/home.json +13 -0
- package/tenants/home/public/js/storefront.js +210 -0
- package/tenants/home/public/logo-wordmark.png +0 -0
- package/tenants/home/public/pages/storefront.css +212 -0
- package/tenants/home/theme.json +6 -0
- package/tenants/tokenoftrust/.tot/config.json +9 -0
- package/tenants/tokenoftrust/content/chrome.json +55 -0
- package/tenants/tokenoftrust/content/home.html +723 -0
- package/tenants/tokenoftrust/content/home.json +233 -0
- package/tenants/tokenoftrust/content/pages-html/careers.html +231 -0
- package/tenants/tokenoftrust/content/pages-html/company.html +275 -0
- package/tenants/tokenoftrust/content/pages-html/contact/contact-sales.html +188 -0
- package/tenants/tokenoftrust/content/pages-html/contact/startup-apply.html +206 -0
- package/tenants/tokenoftrust/content/pages-html/contact.html +178 -0
- package/tenants/tokenoftrust/content/pages-html/industries/adult-content-age-verification.html +286 -0
- package/tenants/tokenoftrust/content/pages-html/industries/cannabis.html +277 -0
- package/tenants/tokenoftrust/content/pages-html/pact-act-pricing.html +289 -0
- package/tenants/tokenoftrust/content/pages-html/pricing.html +483 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-estimation.html +278 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-gate.html +279 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-verification.html +265 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance.html +173 -0
- package/tenants/tokenoftrust/content/pages-html/product/compliance/aml.html +214 -0
- package/tenants/tokenoftrust/content/pages-html/product/compliance/pact-act.html +226 -0
- package/tenants/tokenoftrust/content/pages-html/product/fraud-prevention.html +254 -0
- package/tenants/tokenoftrust/content/pages-html/product/social-profile-verification.html +212 -0
- package/tenants/tokenoftrust/content/pages-html/product/tax/excise-tax.html +213 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/aml.html +259 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/biometric-selfie.html +305 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/coverage.html +254 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/document-verification.html +306 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/electronic-identity-verification.html +304 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/government-id-verification.html +308 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification.html +183 -0
- package/tenants/tokenoftrust/content/pages-html/product.html +228 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/bigcommerce-integration.html +220 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/shopify-integration.html +221 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/wordpress.html +220 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations.html +172 -0
- package/tenants/tokenoftrust/content/pages-html/resources/refer-a-friend-program.html +317 -0
- package/tenants/tokenoftrust/content/pages-html/resources.html +177 -0
- package/tenants/tokenoftrust/content/pages-html/reviews.html +273 -0
- package/tenants/tokenoftrust/content/pages-html/solutions.html +292 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-alcohol.html +289 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-cigars-and-tobacco.html +286 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-firearm-accessories.html +267 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-peptides.html +273 -0
- package/tenants/tokenoftrust/content/themes/tot-navy.json +88 -0
- package/tenants/tokenoftrust/public/favicon.png +0 -0
- package/tenants/tokenoftrust/public/logo-icon.png +0 -0
- package/tenants/tokenoftrust/public/logo-wordmark.png +0 -0
- package/tenants/tokenoftrust/public/pages/company.css +108 -0
- package/tenants/tokenoftrust/public/pages/home.css +457 -0
- package/tenants/tokenoftrust/public/pages/mkt.css +482 -0
- package/tenants/tokenoftrust/public/pages/pricing.css +214 -0
- package/tenants/tokenoftrust/public/pages/solutions.css +66 -0
- package/tenants/tokenoftrust/public/themes/tot-navy-1.0.0.css +136 -0
- package/tenants/tokenoftrust/public/themes/tot-navy.css +358 -0
- package/tenants/tokenoftrust/theme.json +31 -0
- package/tsconfig.base.json +20 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
Token of Trust — company (about) page-local styles
|
|
3
|
+
----------------------------------------------------------------------------
|
|
4
|
+
Tokens, reset, layout, typography, header/nav, footer, buttons (.btn base +
|
|
5
|
+
.btn-green/.btn-navy/.btn-line), .proof, .kicker, .steps, .reassurance and
|
|
6
|
+
the reveal animation all live in the shared theme (tot-navy.css, v1.1). This
|
|
7
|
+
file holds ONLY company-page compositions: the centred hero, the solutions
|
|
8
|
+
card grid, the coverage split, the reassurance row, the CTA band and the
|
|
9
|
+
nav active pill. Consumes the shared token layer (no :root re-declare);
|
|
10
|
+
primary CTAs route through --color-cta. Do not minify — one rule per line.
|
|
11
|
+
========================================================================== */
|
|
12
|
+
|
|
13
|
+
/* Hero (centred) --------------------------------------------------- */
|
|
14
|
+
.hero { text-align: center; padding: 72px 0 0; }
|
|
15
|
+
.hero h1 { margin: 16px auto; max-width: 20ch; }
|
|
16
|
+
.hero .lede { max-width: 58ch; margin: 0 auto; }
|
|
17
|
+
.hero .cta-row { justify-content: center; margin-top: 28px; }
|
|
18
|
+
|
|
19
|
+
/* CTA variants over the shared .btn base -------------------------- */
|
|
20
|
+
.btn-ent { background: var(--color-cta); color: #fff; box-shadow: 0 7px 20px rgba(21, 122, 74, .28); }
|
|
21
|
+
.btn-ent:hover { background: var(--color-cta-hover); }
|
|
22
|
+
|
|
23
|
+
/* Solutions card grid --------------------------------------------- */
|
|
24
|
+
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
|
|
25
|
+
.sol-card {
|
|
26
|
+
padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: transform .2s, box-shadow .2s, border-color .2s;
|
|
27
|
+
}
|
|
28
|
+
.sol-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-cool); }
|
|
29
|
+
.sol-card h3 { font-size: 1.18rem; letter-spacing: -.01em; color: var(--navy); margin-bottom: 8px; }
|
|
30
|
+
.sol-card p { font-size: .94rem; color: var(--muted); }
|
|
31
|
+
.card-link {
|
|
32
|
+
display: inline-flex; align-items: center; min-height: var(--tap); margin-top: 12px; font-weight: 700; font-size: .9rem; color: var(--teal-ink);
|
|
33
|
+
text-decoration: none;
|
|
34
|
+
}
|
|
35
|
+
.card-link:hover { color: var(--navy); }
|
|
36
|
+
|
|
37
|
+
/* How-to-launch steps (over shared .steps) ------------------------ */
|
|
38
|
+
.alt-bg { background: #fff; border-block: 1px solid var(--line); }
|
|
39
|
+
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; text-align: center; }
|
|
40
|
+
.step { padding: 30px 24px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
|
|
41
|
+
.step .num {
|
|
42
|
+
font-size: .74rem; font-weight: 800; letter-spacing: .14em; display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
|
|
43
|
+
background: #eaf5f2; color: var(--teal-ink);
|
|
44
|
+
}
|
|
45
|
+
.step h3 { font-size: 1.05rem; margin: 10px 0 6px; color: var(--navy); }
|
|
46
|
+
.step p { font-size: .9rem; color: var(--muted); }
|
|
47
|
+
|
|
48
|
+
/* Coverage split -------------------------------------------------- */
|
|
49
|
+
.coverage { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
|
|
50
|
+
.coverage-copy h2 { margin-top: 6px; }
|
|
51
|
+
.coverage-copy p { color: var(--muted); max-width: 46ch; margin: 12px 0 24px; }
|
|
52
|
+
.coverage-list {
|
|
53
|
+
list-style: none; display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px;
|
|
54
|
+
box-shadow: var(--shadow-soft);
|
|
55
|
+
}
|
|
56
|
+
.coverage-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
|
|
57
|
+
.coverage-list li::before { content: "\2713"; font-weight: 800; flex-shrink: 0; color: var(--green); }
|
|
58
|
+
|
|
59
|
+
/* Privacy reassurance row ----------------------------------------- */
|
|
60
|
+
.reassure-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
|
|
61
|
+
.privacy-links { margin-top: 28px; font-weight: 600; }
|
|
62
|
+
.privacy-links a {
|
|
63
|
+
color: var(--teal-ink); text-decoration: none;
|
|
64
|
+
display: inline-flex; align-items: center; min-height: var(--tap);
|
|
65
|
+
}
|
|
66
|
+
.privacy-links a:hover { color: var(--navy); }
|
|
67
|
+
|
|
68
|
+
/* CTA band (over shared .ent-band) -------------------------------- */
|
|
69
|
+
.ent-band { padding: 64px 40px; text-align: center; background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: 26px; color: #fff; }
|
|
70
|
+
.ent-band .kicker { color: #7fe3b8; }
|
|
71
|
+
.ent-band h2 { color: #fff; }
|
|
72
|
+
.ent-band p { max-width: 52ch; margin: 0 auto; color: #b8c8de; }
|
|
73
|
+
.cta-center { justify-content: center; margin-top: 24px; }
|
|
74
|
+
.ent-band .btn-line { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
|
|
75
|
+
.ent-band .btn-line:hover { border-color: #fff; }
|
|
76
|
+
|
|
77
|
+
/* Nav active pill + footer note ----------------------------------- */
|
|
78
|
+
nav.primary a.active { color: var(--teal-ink); background: #eaf5f2; padding: 6px 16px; border-radius: 999px; font-weight: 700; }
|
|
79
|
+
.foot-note { font-size: .88rem; margin-top: 12px; max-width: 34ch; color: var(--muted); }
|
|
80
|
+
|
|
81
|
+
/* Responsive ------------------------------------------------------ */
|
|
82
|
+
@media (max-width: 920px) {
|
|
83
|
+
.sol-grid { grid-template-columns: 1fr 1fr; }
|
|
84
|
+
.steps { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
|
|
85
|
+
.coverage { grid-template-columns: 1fr; gap: 28px; }
|
|
86
|
+
.reassure-row { grid-template-columns: 1fr; }
|
|
87
|
+
}
|
|
88
|
+
@media (max-width: 560px) {
|
|
89
|
+
.sol-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Dark theme — literal light surfaces + decorative tints */
|
|
93
|
+
@media (prefers-color-scheme: dark) {
|
|
94
|
+
:root:not([data-theme="light"]) {
|
|
95
|
+
.sol-card, .alt-bg, .coverage-list { background: var(--card); }
|
|
96
|
+
.step .num, nav.primary a.active { background: rgba(43, 179, 166, .16); color: var(--teal-ink); }
|
|
97
|
+
.sol-card h3, .card-link:hover, .step h3, .privacy-links a:hover { color: var(--ink); }
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
:root[data-theme="dark"] .sol-card,
|
|
101
|
+
:root[data-theme="dark"] .alt-bg,
|
|
102
|
+
:root[data-theme="dark"] .coverage-list { background: var(--card); }
|
|
103
|
+
:root[data-theme="dark"] .step .num,
|
|
104
|
+
:root[data-theme="dark"] nav.primary a.active { background: rgba(43, 179, 166, .16); color: var(--teal-ink); }
|
|
105
|
+
:root[data-theme="dark"] .sol-card h3,
|
|
106
|
+
:root[data-theme="dark"] .card-link:hover,
|
|
107
|
+
:root[data-theme="dark"] .step h3,
|
|
108
|
+
:root[data-theme="dark"] .privacy-links a:hover { color: var(--ink); }
|
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
/* ============================================================================
|
|
2
|
+
Token of Trust — home page-local styles
|
|
3
|
+
----------------------------------------------------------------------------
|
|
4
|
+
Base tokens, reset, layout, typography, buttons, header/nav, proof strip,
|
|
5
|
+
footer, forms and the trust/social-proof slots live in the shared theme
|
|
6
|
+
(tot-navy.css, concept v1.1) — this file holds ONLY rules unique to the
|
|
7
|
+
home page's hero composition, animated compliance console, section
|
|
8
|
+
layouts and page-scoped responsive/motion rules.
|
|
9
|
+
Consumes the shared token layer; do not re-declare :root here. Do not
|
|
10
|
+
minify — one rule per line, keep the section headers.
|
|
11
|
+
========================================================================== */
|
|
12
|
+
|
|
13
|
+
/* Hero ------------------------------------------------------------- */
|
|
14
|
+
.hero { position: relative; overflow: hidden; padding: var(--s5) 0; }
|
|
15
|
+
.hero .blob {
|
|
16
|
+
position: absolute;
|
|
17
|
+
border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
|
|
18
|
+
filter: blur(2px);
|
|
19
|
+
opacity: .5;
|
|
20
|
+
z-index: 0;
|
|
21
|
+
animation: blobDrift 16s ease-in-out infinite alternate;
|
|
22
|
+
}
|
|
23
|
+
.hero .blob.b1 { width: 440px; height: 440px; background: #e7f4f1; top: -140px; right: -90px; }
|
|
24
|
+
.hero .blob.b2 {
|
|
25
|
+
width: 300px; height: 300px; background: #fdeee9;
|
|
26
|
+
bottom: -120px; left: -70px; animation-delay: -7s;
|
|
27
|
+
}
|
|
28
|
+
@keyframes blobDrift { to { transform: translate(26px, -16px) rotate(7deg); } }
|
|
29
|
+
.hero-grid {
|
|
30
|
+
display: grid;
|
|
31
|
+
grid-template-columns: 1.02fr .98fr;
|
|
32
|
+
gap: var(--s5);
|
|
33
|
+
align-items: center;
|
|
34
|
+
position: relative;
|
|
35
|
+
z-index: 1;
|
|
36
|
+
}
|
|
37
|
+
.hero-ctas { display: flex; gap: 14px; margin-top: var(--s3); flex-wrap: wrap; }
|
|
38
|
+
.hero-cues { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
|
|
39
|
+
.hero-cues span {
|
|
40
|
+
font-size: .84rem; font-weight: 600; color: var(--muted);
|
|
41
|
+
display: flex; align-items: center; gap: 7px;
|
|
42
|
+
}
|
|
43
|
+
.hero-cues svg {
|
|
44
|
+
width: 15px; height: 15px; stroke: var(--green); stroke-width: 3; fill: none;
|
|
45
|
+
stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* Hero visual: shopper card + compliance console ------------------- */
|
|
49
|
+
.hero-stage { position: relative; min-height: 470px; z-index: 1; }
|
|
50
|
+
.console {
|
|
51
|
+
position: absolute; right: 0; top: 34px; width: min(400px, 92%);
|
|
52
|
+
background: var(--navy); border-radius: var(--r);
|
|
53
|
+
box-shadow: 0 26px 60px rgba(16, 41, 75, .35); color: #dbe6f5; overflow: hidden;
|
|
54
|
+
}
|
|
55
|
+
.console-head {
|
|
56
|
+
display: flex; justify-content: space-between; align-items: center;
|
|
57
|
+
padding: 13px 18px; border-bottom: 1px solid var(--navy-soft); font-size: .78rem;
|
|
58
|
+
}
|
|
59
|
+
.console-head b { color: #fff; }
|
|
60
|
+
.console-head .live {
|
|
61
|
+
font-family: var(--mono); font-size: .66rem; color: #7fe3b8;
|
|
62
|
+
display: flex; align-items: center; gap: 6px;
|
|
63
|
+
}
|
|
64
|
+
.console-head .live i {
|
|
65
|
+
width: 7px; height: 7px; border-radius: 50%; background: #7fe3b8;
|
|
66
|
+
animation: pulse 1.8s infinite;
|
|
67
|
+
}
|
|
68
|
+
.console-body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
|
|
69
|
+
.c-row {
|
|
70
|
+
display: flex; align-items: center; gap: 10px; background: var(--navy-2);
|
|
71
|
+
border: 1px solid var(--navy-soft); border-radius: 10px; padding: 9px 12px;
|
|
72
|
+
font-size: .76rem; opacity: .45; transition: opacity .4s, border-color .4s;
|
|
73
|
+
}
|
|
74
|
+
.c-row.on { opacity: 1; border-color: rgba(127, 227, 184, .5); }
|
|
75
|
+
.c-row .ic {
|
|
76
|
+
width: 18px; height: 18px; border-radius: 50%; display: grid;
|
|
77
|
+
place-items: center; flex-shrink: 0; background: rgba(127, 227, 184, .15);
|
|
78
|
+
}
|
|
79
|
+
.c-row .ic svg {
|
|
80
|
+
width: 10px; height: 10px; stroke: #7fe3b8; stroke-width: 3; fill: none;
|
|
81
|
+
stroke-linecap: round; stroke-linejoin: round;
|
|
82
|
+
}
|
|
83
|
+
.c-row.warn .ic { background: rgba(249, 115, 98, .18); }
|
|
84
|
+
.c-row.warn .ic svg { stroke: var(--coral); }
|
|
85
|
+
.c-row small {
|
|
86
|
+
color: #8fa5c4; margin-left: auto; font-family: var(--mono);
|
|
87
|
+
font-size: .62rem; white-space: nowrap;
|
|
88
|
+
}
|
|
89
|
+
.audit-line {
|
|
90
|
+
font-family: var(--mono); font-size: .64rem; color: #8fa5c4;
|
|
91
|
+
padding: 10px 4px 0; border-top: 1px dashed var(--navy-soft);
|
|
92
|
+
margin-top: 6px; min-height: 2.1em;
|
|
93
|
+
}
|
|
94
|
+
.audit-line b { color: #7fe3b8; font-weight: 700; }
|
|
95
|
+
.shopper {
|
|
96
|
+
position: absolute; left: 0; bottom: 22px; width: 260px; background: var(--card);
|
|
97
|
+
border-radius: var(--r); box-shadow: var(--shadow); padding: 20px;
|
|
98
|
+
text-align: center; animation: bob 6s ease-in-out infinite; z-index: 2;
|
|
99
|
+
}
|
|
100
|
+
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
|
|
101
|
+
.shopper .avatar {
|
|
102
|
+
width: 64px; height: 64px; border-radius: 50%; background: #e7f4f1;
|
|
103
|
+
display: grid; place-items: center; margin: 0 auto 10px;
|
|
104
|
+
}
|
|
105
|
+
.shopper h3 { font-size: .98rem; font-weight: 800; }
|
|
106
|
+
.shopper p { font-size: .76rem; color: var(--muted); }
|
|
107
|
+
.sh-progress {
|
|
108
|
+
height: 7px; border-radius: 5px; background: #eef1ec;
|
|
109
|
+
overflow: hidden; margin: 12px 0 8px;
|
|
110
|
+
}
|
|
111
|
+
.sh-progress i {
|
|
112
|
+
display: block; height: 100%; width: 0; border-radius: 5px;
|
|
113
|
+
background: var(--grad); transition: width 1.2s ease;
|
|
114
|
+
}
|
|
115
|
+
.shopper.checking .sh-progress i { width: 78%; }
|
|
116
|
+
.shopper.approved .sh-progress i { width: 100%; background: var(--green); }
|
|
117
|
+
.sh-status { font-size: .78rem; font-weight: 800; color: var(--muted); min-height: 1.4em; }
|
|
118
|
+
.shopper.approved .sh-status { color: var(--color-success); }
|
|
119
|
+
.cart-chip {
|
|
120
|
+
position: absolute; left: 34px; top: 8px; background: #fff;
|
|
121
|
+
border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-soft);
|
|
122
|
+
padding: 8px 16px; font-size: .76rem; font-weight: 700; color: var(--ink);
|
|
123
|
+
display: flex; align-items: center; gap: 8px; opacity: 0;
|
|
124
|
+
transform: translateY(8px); transition: opacity .5s, transform .5s; z-index: 3;
|
|
125
|
+
}
|
|
126
|
+
.cart-chip.show { opacity: 1; transform: none; }
|
|
127
|
+
.cart-chip .ok { color: var(--green); }
|
|
128
|
+
|
|
129
|
+
/* Before / After --------------------------------------------------- */
|
|
130
|
+
.ba-grid {
|
|
131
|
+
display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s3);
|
|
132
|
+
align-items: stretch; margin-top: var(--s4);
|
|
133
|
+
}
|
|
134
|
+
.ba-col {
|
|
135
|
+
background: var(--card); border: 1px solid var(--line);
|
|
136
|
+
border-radius: var(--r); padding: var(--s3);
|
|
137
|
+
}
|
|
138
|
+
.ba-col h3 {
|
|
139
|
+
font-size: 1.02rem; font-weight: 800; margin-bottom: 14px;
|
|
140
|
+
display: flex; align-items: center; gap: 9px;
|
|
141
|
+
}
|
|
142
|
+
.ba-col.before h3 { color: #b3452e; }
|
|
143
|
+
.ba-col.after h3 { color: var(--color-success); }
|
|
144
|
+
.mess { display: flex; flex-wrap: wrap; gap: 9px; }
|
|
145
|
+
.mess span {
|
|
146
|
+
font-size: .78rem; font-weight: 700; background: #faf3ef;
|
|
147
|
+
border: 1px dashed #e3c9bd; color: #8a5a48; border-radius: 9px;
|
|
148
|
+
padding: 7px 12px; transform: rotate(var(--tilt, 0deg));
|
|
149
|
+
}
|
|
150
|
+
.mess span:nth-child(odd) { --tilt: -1.6deg; }
|
|
151
|
+
.mess span:nth-child(even) { --tilt: 1.4deg; }
|
|
152
|
+
.mess-note { font-size: .8rem; color: var(--muted); margin-top: 14px; font-style: italic; }
|
|
153
|
+
.ba-arrow { display: grid; place-items: center; color: var(--teal); }
|
|
154
|
+
.ba-arrow svg {
|
|
155
|
+
width: 36px; height: 36px; stroke: currentColor; stroke-width: 2.4;
|
|
156
|
+
fill: none; stroke-linecap: round; stroke-linejoin: round;
|
|
157
|
+
}
|
|
158
|
+
.after-stack { display: flex; flex-direction: column; gap: 9px; }
|
|
159
|
+
.after-stack .row {
|
|
160
|
+
display: flex; align-items: center; gap: 10px; background: #f0f8f3;
|
|
161
|
+
border: 1px solid #d3e9db; border-radius: 10px; padding: 9px 13px;
|
|
162
|
+
font-size: .82rem; font-weight: 700; color: var(--ink);
|
|
163
|
+
}
|
|
164
|
+
.after-stack .row svg {
|
|
165
|
+
width: 15px; height: 15px; stroke: var(--green); stroke-width: 3;
|
|
166
|
+
fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
|
|
167
|
+
}
|
|
168
|
+
.after-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }
|
|
169
|
+
|
|
170
|
+
/* Journey ---------------------------------------------------------- */
|
|
171
|
+
.journey-wrap {
|
|
172
|
+
background: #fff; border: 1px solid var(--line); border-radius: 28px;
|
|
173
|
+
padding: var(--s4); margin-top: var(--s4); position: relative; overflow: hidden;
|
|
174
|
+
}
|
|
175
|
+
.journey-wrap::before {
|
|
176
|
+
content: ""; position: absolute; width: 300px; height: 300px;
|
|
177
|
+
border-radius: 52% 48% 60% 40% / 55% 45% 55% 45%; background: #f3faf7;
|
|
178
|
+
top: -130px; right: -90px;
|
|
179
|
+
}
|
|
180
|
+
.journey {
|
|
181
|
+
display: grid; grid-template-columns: repeat(7, 1fr);
|
|
182
|
+
gap: 10px; position: relative; z-index: 1;
|
|
183
|
+
}
|
|
184
|
+
.jstep {
|
|
185
|
+
text-align: center; padding: 14px 6px; opacity: 0; transform: translateY(18px);
|
|
186
|
+
transition: opacity .5s, transform .5s cubic-bezier(.34, 1.4, .64, 1);
|
|
187
|
+
}
|
|
188
|
+
.jstep.in { opacity: 1; transform: none; }
|
|
189
|
+
.jstep .jdot {
|
|
190
|
+
width: 46px; height: 46px; border-radius: 50%; display: grid;
|
|
191
|
+
place-items: center; margin: 0 auto 10px; background: #e7f4f1;
|
|
192
|
+
font-size: 1.05rem; position: relative;
|
|
193
|
+
}
|
|
194
|
+
.jstep.flag .jdot { background: #fdeee9; }
|
|
195
|
+
.jstep h3 { font-size: .82rem; font-weight: 800; margin-bottom: 4px; color: var(--navy); }
|
|
196
|
+
.jstep p { font-size: .72rem; color: var(--muted); line-height: 1.5; }
|
|
197
|
+
.jline {
|
|
198
|
+
position: absolute; top: 37px; left: 8%; right: 8%; height: 2px;
|
|
199
|
+
background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
|
|
200
|
+
z-index: 0;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/* Pillars ---------------------------------------------------------- */
|
|
204
|
+
.pillars {
|
|
205
|
+
display: grid; grid-template-columns: repeat(2, 1fr);
|
|
206
|
+
gap: var(--s3); margin-top: var(--s4);
|
|
207
|
+
}
|
|
208
|
+
.pillar {
|
|
209
|
+
background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
|
|
210
|
+
padding: var(--s3); transition: transform .2s, box-shadow .2s;
|
|
211
|
+
display: flex; gap: 18px; align-items: flex-start;
|
|
212
|
+
}
|
|
213
|
+
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
|
|
214
|
+
.pillar .icon {
|
|
215
|
+
width: 48px; height: 48px; border-radius: 14px; background: #eaf5f2;
|
|
216
|
+
display: grid; place-items: center; flex-shrink: 0;
|
|
217
|
+
}
|
|
218
|
+
.pillar.warm .icon { background: #fdeee9; }
|
|
219
|
+
.pillar .icon svg {
|
|
220
|
+
width: 24px; height: 24px; stroke: var(--teal); fill: none;
|
|
221
|
+
stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
|
|
222
|
+
}
|
|
223
|
+
.pillar.warm .icon svg { stroke: var(--coral); }
|
|
224
|
+
.pillar h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
|
|
225
|
+
.pillar p { color: var(--muted); font-size: .92rem; }
|
|
226
|
+
.pillar .when {
|
|
227
|
+
display: block; font-size: .76rem; font-weight: 700;
|
|
228
|
+
color: var(--teal-ink); margin-top: 9px;
|
|
229
|
+
}
|
|
230
|
+
.second-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s3); }
|
|
231
|
+
.second-row span {
|
|
232
|
+
font-size: .84rem; font-weight: 700; background: #fff;
|
|
233
|
+
border: 1px solid var(--line); border-radius: 999px;
|
|
234
|
+
padding: 10px 20px; color: var(--ink);
|
|
235
|
+
}
|
|
236
|
+
.second-row b { color: var(--teal-ink); }
|
|
237
|
+
|
|
238
|
+
/* Industries ------------------------------------------------------- */
|
|
239
|
+
.ind-section { background: var(--navy); color: #dbe6f5; }
|
|
240
|
+
.ind-section .kicker { color: #7fe3b8; }
|
|
241
|
+
.ind-section h2 { color: #fff; }
|
|
242
|
+
.ind-section .section-lede { color: #9fb2cb; }
|
|
243
|
+
.ind-grid {
|
|
244
|
+
display: grid; grid-template-columns: repeat(3, 1fr);
|
|
245
|
+
gap: var(--s2); margin-top: var(--s4);
|
|
246
|
+
}
|
|
247
|
+
.ind {
|
|
248
|
+
background: var(--navy-2); border: 1px solid var(--navy-soft);
|
|
249
|
+
border-radius: var(--r-sm); padding: 22px;
|
|
250
|
+
transition: border-color .2s, transform .2s;
|
|
251
|
+
}
|
|
252
|
+
.ind:hover { border-color: #7fe3b8; transform: translateY(-4px); }
|
|
253
|
+
.ind h3 {
|
|
254
|
+
font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px;
|
|
255
|
+
display: flex; align-items: center; gap: 9px;
|
|
256
|
+
}
|
|
257
|
+
.ind h3 .em { font-size: 1.1rem; }
|
|
258
|
+
.ind p { font-size: .85rem; color: #9fb2cb; }
|
|
259
|
+
|
|
260
|
+
/* Integrations ----------------------------------------------------- */
|
|
261
|
+
.int-row {
|
|
262
|
+
display: flex; flex-wrap: wrap; gap: 12px;
|
|
263
|
+
justify-content: center; margin-top: var(--s4);
|
|
264
|
+
}
|
|
265
|
+
.int-badge {
|
|
266
|
+
font-weight: 700; font-size: .92rem; background: #fff; border: 1px solid var(--line);
|
|
267
|
+
border-radius: 12px; padding: 12px 24px; transition: transform .15s, border-color .15s;
|
|
268
|
+
}
|
|
269
|
+
.int-badge:hover { transform: translateY(-3px); border-color: var(--teal); }
|
|
270
|
+
.flow-note {
|
|
271
|
+
display: flex; flex-wrap: wrap; gap: 10px;
|
|
272
|
+
justify-content: center; margin-top: var(--s3);
|
|
273
|
+
}
|
|
274
|
+
.flow-note span {
|
|
275
|
+
font-size: .8rem; font-weight: 600; color: var(--muted);
|
|
276
|
+
background: #f1efe9; border-radius: 999px; padding: 7px 16px;
|
|
277
|
+
}
|
|
278
|
+
.api-card {
|
|
279
|
+
max-width: 620px; margin: var(--s4) auto 0; background: var(--navy);
|
|
280
|
+
border-radius: var(--r-sm); overflow: hidden; font-family: var(--mono);
|
|
281
|
+
font-size: .8rem; box-shadow: var(--shadow);
|
|
282
|
+
}
|
|
283
|
+
.api-card .bar {
|
|
284
|
+
display: flex; gap: 7px; padding: 11px 16px;
|
|
285
|
+
border-bottom: 1px solid var(--navy-soft);
|
|
286
|
+
}
|
|
287
|
+
.api-card .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--navy-soft); }
|
|
288
|
+
.api-card pre { padding: 18px; color: #c9d8ef; line-height: 1.8; white-space: pre-wrap; }
|
|
289
|
+
.tok-k { color: #7fe3b8; }
|
|
290
|
+
.tok-s { color: #9db8e8; }
|
|
291
|
+
.tok-c { color: #8299b8; }
|
|
292
|
+
|
|
293
|
+
/* Privacy ---------------------------------------------------------- */
|
|
294
|
+
.privacy-band {
|
|
295
|
+
background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: 28px;
|
|
296
|
+
color: #fff; padding: var(--s5); display: grid; grid-template-columns: auto 1fr;
|
|
297
|
+
gap: var(--s4); align-items: center; position: relative; overflow: hidden;
|
|
298
|
+
}
|
|
299
|
+
.privacy-band::after {
|
|
300
|
+
content: ""; position: absolute; width: 340px; height: 340px;
|
|
301
|
+
border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
|
|
302
|
+
background: rgba(127, 227, 184, .06); bottom: -160px; right: -110px;
|
|
303
|
+
}
|
|
304
|
+
.privacy-band .heart { width: 120px; height: 130px; flex-shrink: 0; }
|
|
305
|
+
.heartbeat { animation: heartbeat 2.6s ease-in-out infinite; transform-origin: center; }
|
|
306
|
+
@keyframes heartbeat {
|
|
307
|
+
0%, 100% { transform: scale(1); }
|
|
308
|
+
12% { transform: scale(1.1); }
|
|
309
|
+
24% { transform: scale(1); }
|
|
310
|
+
36% { transform: scale(1.06); }
|
|
311
|
+
48% { transform: scale(1); }
|
|
312
|
+
}
|
|
313
|
+
.privacy-band h2 { color: #fff; margin-top: 6px; }
|
|
314
|
+
.privacy-band .kicker { color: #7fe3b8; }
|
|
315
|
+
.privacy-band p { color: #b8c8de; max-width: 60ch; }
|
|
316
|
+
.priv-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s2); }
|
|
317
|
+
.priv-points span {
|
|
318
|
+
font-size: .78rem; font-weight: 700; border: 1.5px solid rgba(255, 255, 255, .28);
|
|
319
|
+
border-radius: 999px; padding: 7px 15px; color: #dbe6f5;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/* Proof cards / quotes / ratings ----------------------------------- */
|
|
323
|
+
.quotes {
|
|
324
|
+
display: grid; grid-template-columns: repeat(3, 1fr);
|
|
325
|
+
gap: var(--s3); margin-top: var(--s4);
|
|
326
|
+
}
|
|
327
|
+
.quote {
|
|
328
|
+
background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
|
|
329
|
+
padding: var(--s3); display: flex; flex-direction: column;
|
|
330
|
+
}
|
|
331
|
+
.quote .metric {
|
|
332
|
+
font-size: 1.55rem; font-weight: 800; color: var(--teal-ink); letter-spacing: -.02em;
|
|
333
|
+
}
|
|
334
|
+
.quote .metric.warm { color: var(--coral); }
|
|
335
|
+
.quote .metric.deep { color: var(--navy); }
|
|
336
|
+
.quote p { margin: 10px 0 14px; font-size: .93rem; color: var(--ink); flex: 1; }
|
|
337
|
+
.quote footer { color: var(--muted); font-size: .8rem; font-weight: 600; }
|
|
338
|
+
.ratings-row {
|
|
339
|
+
display: flex; gap: 14px; justify-content: center;
|
|
340
|
+
margin-top: var(--s3); flex-wrap: wrap;
|
|
341
|
+
}
|
|
342
|
+
.rating-card {
|
|
343
|
+
background: #fff; border: 1px solid var(--line); border-radius: 12px;
|
|
344
|
+
padding: 11px 22px; font-weight: 800; color: var(--navy);
|
|
345
|
+
}
|
|
346
|
+
.rating-card small {
|
|
347
|
+
display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
|
|
348
|
+
text-transform: uppercase; color: var(--muted);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/* FAQ ------------------------------------------------------------- */
|
|
352
|
+
.faq { max-width: 780px; margin: var(--s4) auto 0; }
|
|
353
|
+
.faq details {
|
|
354
|
+
border: 1px solid var(--line); border-radius: 14px;
|
|
355
|
+
margin-bottom: 12px; background: #fff; overflow: hidden;
|
|
356
|
+
}
|
|
357
|
+
.faq summary {
|
|
358
|
+
padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none;
|
|
359
|
+
display: flex; justify-content: space-between; gap: 12px; color: var(--navy);
|
|
360
|
+
}
|
|
361
|
+
.faq summary::-webkit-details-marker { display: none; }
|
|
362
|
+
.faq summary::after {
|
|
363
|
+
content: "+"; font-size: 1.35rem; color: var(--teal-ink);
|
|
364
|
+
font-weight: 600; transition: transform .2s;
|
|
365
|
+
}
|
|
366
|
+
.faq details[open] summary::after { transform: rotate(45deg); }
|
|
367
|
+
.faq details p { padding: 0 22px 18px; color: var(--muted); }
|
|
368
|
+
|
|
369
|
+
/* Final CTA ------------------------------------------------------- */
|
|
370
|
+
.cta-band {
|
|
371
|
+
background: #fff; border: 1px solid var(--line); border-radius: 28px;
|
|
372
|
+
padding: var(--s5); text-align: center; position: relative; overflow: hidden;
|
|
373
|
+
}
|
|
374
|
+
.cta-band::before {
|
|
375
|
+
content: ""; position: absolute; width: 380px; height: 380px;
|
|
376
|
+
border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%; background: #eaf5f2;
|
|
377
|
+
top: -190px; left: -120px;
|
|
378
|
+
}
|
|
379
|
+
.cta-band::after {
|
|
380
|
+
content: ""; position: absolute; width: 280px; height: 280px;
|
|
381
|
+
border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; background: #fdeee9;
|
|
382
|
+
bottom: -150px; right: -80px;
|
|
383
|
+
}
|
|
384
|
+
.cta-band > * { position: relative; z-index: 1; }
|
|
385
|
+
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto; }
|
|
386
|
+
.cta-band .hero-ctas { justify-content: center; }
|
|
387
|
+
|
|
388
|
+
/* Responsive (page compositions; base + nav handled by the theme) - */
|
|
389
|
+
@media (max-width: 980px) {
|
|
390
|
+
.hero-grid { grid-template-columns: 1fr; }
|
|
391
|
+
.hero-stage { min-height: 440px; }
|
|
392
|
+
.journey { grid-template-columns: repeat(4, 1fr); }
|
|
393
|
+
.jline { display: none; }
|
|
394
|
+
.pillars { grid-template-columns: 1fr; }
|
|
395
|
+
.ba-grid { grid-template-columns: 1fr; }
|
|
396
|
+
.ba-arrow svg { transform: rotate(90deg); }
|
|
397
|
+
.ind-grid { grid-template-columns: 1fr 1fr; }
|
|
398
|
+
.quotes { grid-template-columns: 1fr; }
|
|
399
|
+
.privacy-band { grid-template-columns: 1fr; text-align: center; }
|
|
400
|
+
.privacy-band .heart { margin: 0 auto; }
|
|
401
|
+
.priv-points { justify-content: center; }
|
|
402
|
+
}
|
|
403
|
+
@media (max-width: 600px) {
|
|
404
|
+
.journey { grid-template-columns: repeat(2, 1fr); }
|
|
405
|
+
.ind-grid { grid-template-columns: 1fr; }
|
|
406
|
+
.console { position: relative; top: 0; width: 100%; }
|
|
407
|
+
.shopper { position: relative; bottom: 0; margin: -30px auto 0; left: 0; }
|
|
408
|
+
.cart-chip { position: relative; left: 0; top: 0; margin: 14px auto 0; width: fit-content; }
|
|
409
|
+
}
|
|
410
|
+
@media (prefers-reduced-motion: reduce) {
|
|
411
|
+
.jstep, .c-row, .cart-chip { opacity: 1; transform: none; }
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
/* Dark theme — literal light surfaces + decorative tints */
|
|
415
|
+
@media (prefers-color-scheme: dark) {
|
|
416
|
+
:root:not([data-theme="light"]) {
|
|
417
|
+
.hero .blob.b1 { background: rgba(43, 179, 166, .12); }
|
|
418
|
+
.hero .blob.b2 { background: rgba(255, 148, 120, .1); }
|
|
419
|
+
.shopper .avatar, .jstep .jdot, .pillar .icon { background: rgba(43, 179, 166, .16); }
|
|
420
|
+
.jstep.flag .jdot, .pillar.warm .icon { background: rgba(255, 148, 120, .14); }
|
|
421
|
+
.sh-progress { background: #1c2a3f; }
|
|
422
|
+
.cart-chip, .journey-wrap, .second-row span, .int-badge, .rating-card, .faq details, .cta-band { background: var(--card); }
|
|
423
|
+
.journey-wrap::before { background: rgba(43, 179, 166, .08); }
|
|
424
|
+
.flow-note span { background: #172137; }
|
|
425
|
+
.cta-band::before { background: rgba(43, 179, 166, .1); }
|
|
426
|
+
.cta-band::after { background: rgba(255, 148, 120, .1); }
|
|
427
|
+
.mess span { background: #2a1c17; border-color: #4a3226; color: #ffb59e; }
|
|
428
|
+
.after-stack .row { background: #0f2a1e; border-color: #1c4230; }
|
|
429
|
+
.jstep h3, .pillar h3, .quote .metric.deep, .rating-card, .faq summary { color: var(--ink); }
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
:root[data-theme="dark"] .hero .blob.b1 { background: rgba(43, 179, 166, .12); }
|
|
433
|
+
:root[data-theme="dark"] .hero .blob.b2 { background: rgba(255, 148, 120, .1); }
|
|
434
|
+
:root[data-theme="dark"] .shopper .avatar,
|
|
435
|
+
:root[data-theme="dark"] .jstep .jdot,
|
|
436
|
+
:root[data-theme="dark"] .pillar .icon { background: rgba(43, 179, 166, .16); }
|
|
437
|
+
:root[data-theme="dark"] .jstep.flag .jdot,
|
|
438
|
+
:root[data-theme="dark"] .pillar.warm .icon { background: rgba(255, 148, 120, .14); }
|
|
439
|
+
:root[data-theme="dark"] .sh-progress { background: #1c2a3f; }
|
|
440
|
+
:root[data-theme="dark"] .cart-chip,
|
|
441
|
+
:root[data-theme="dark"] .journey-wrap,
|
|
442
|
+
:root[data-theme="dark"] .second-row span,
|
|
443
|
+
:root[data-theme="dark"] .int-badge,
|
|
444
|
+
:root[data-theme="dark"] .rating-card,
|
|
445
|
+
:root[data-theme="dark"] .faq details,
|
|
446
|
+
:root[data-theme="dark"] .cta-band { background: var(--card); }
|
|
447
|
+
:root[data-theme="dark"] .journey-wrap::before { background: rgba(43, 179, 166, .08); }
|
|
448
|
+
:root[data-theme="dark"] .flow-note span { background: #172137; }
|
|
449
|
+
:root[data-theme="dark"] .cta-band::before { background: rgba(43, 179, 166, .1); }
|
|
450
|
+
:root[data-theme="dark"] .cta-band::after { background: rgba(255, 148, 120, .1); }
|
|
451
|
+
:root[data-theme="dark"] .mess span { background: #2a1c17; border-color: #4a3226; color: #ffb59e; }
|
|
452
|
+
:root[data-theme="dark"] .after-stack .row { background: #0f2a1e; border-color: #1c4230; }
|
|
453
|
+
:root[data-theme="dark"] .jstep h3,
|
|
454
|
+
:root[data-theme="dark"] .pillar h3,
|
|
455
|
+
:root[data-theme="dark"] .quote .metric.deep,
|
|
456
|
+
:root[data-theme="dark"] .rating-card,
|
|
457
|
+
:root[data-theme="dark"] .faq summary { color: var(--ink); }
|