From ad3dc872770109982c9e5b01e6bea9df6519881c Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Mon, 17 Mar 2025 11:34:40 -0700 Subject: [PATCH] fix ctas and improve roadmap item copy --- _layouts/company.html | 13 +- _layouts/landing.html | 15 +- _layouts/roadmap.html | 309 +++++++++++++++++++---------------------- _layouts/services.html | 12 +- _sass/base.scss | 47 +++++-- 5 files changed, 197 insertions(+), 199 deletions(-) diff --git a/_layouts/company.html b/_layouts/company.html index 653bea9..1fe58be 100644 --- a/_layouts/company.html +++ b/_layouts/company.html @@ -87,17 +87,14 @@ -
-
-

ready to take security seriously?

-

We help organizations that can't afford to fail. If security is mission-critical for your company, let's talk.

- +
+

ready to take your security to the next level?

+

We help organizations that can't afford to fail. If security is mission-critical for your company, let's talk.

+
- {%- include footer.html -%}
diff --git a/_layouts/landing.html b/_layouts/landing.html index edeb54d..db71ee5 100644 --- a/_layouts/landing.html +++ b/_layouts/landing.html @@ -56,7 +56,7 @@
-
+
what we do
@@ -88,13 +88,12 @@
-
-
-

ready to take security seriously?

-

We help organizations that can't afford to fail. If security is mission-critical for your company, let's talk.

- + +
+

ready to take your security to the next level?

+

We help organizations that can't afford to fail. If security is mission-critical for your company, let's talk.

+
diff --git a/_layouts/roadmap.html b/_layouts/roadmap.html index 0727126..3a37e12 100644 --- a/_layouts/roadmap.html +++ b/_layouts/roadmap.html @@ -59,229 +59,209 @@
+
+ +
+
+
+
+
+
Keyfork
+
 | 
+
deterministic key management
+
+
+
ready
+
+
+

Keyfork simplifies cryptographic material management by deriving for different cryptographic algorithms from a single entropy source. This eliminates manual key handling complexity while maintaining security.

+
+ + Learn more + + +
+
+
+ + +
+
+
+
+
+
Icepick
+
 | 
+
cryptographic operations
+
+
+
ready
+
+
+

Icepick provides a framework for cryptographic operations while preserving memory boundaries. It enables secure and efficient crypto transactions, including transfers and staking, in a platform-agnostic way.

+
+ + Learn more + + +
+
+
+ +
+
+
+
+
+
AirgapOS
+
 | 
+
air-gapped OS
+
+
+
ready
+
+
+

AirgapOS is a minimal, deterministic Linux unikernel built for secure offline operations. It reduces the attack surface for managing sensitive secrets in an air-gapped environment.

+
+ + Learn more + + +
+
+
+ +
+
+
+
+
+
Bootproof
+
 | 
+
remote attestation
+
+
+
backlog
+
+
+

Bootproof cryptographically attests that a server is running the software it claims to be running by leveraging TPM2.

+
+ + Learn more + + +
+
+
+ +
+
+
+
+
+
EnclaveOS
+
 | 
+
trusted execution environments
+
in-progress
- -
Problem statement
-

How does one create a maximally isolated environment that's ephermeral and allows easy reproduction of software?

+

EnclaveOS is a minimal, immutable, and deterministic Linux unikernel tailored for Trusted Execution Environments (TEEs). It enables high-security, verifiable computing for sensitive workloads.


-
Solution
-

Create a bare-bones uni-kernel operating system which spins up a new VM for each build, and discards everything afterwards

-
- + Learn more
- -
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
-
@@ -325,6 +305,7 @@

ready to take your security to the next level?

+

We help organizations that can't afford to fail. If security is mission-critical for your company, let's talk.

diff --git a/_layouts/services.html b/_layouts/services.html index 96f9fbd..ce399ab 100644 --- a/_layouts/services.html +++ b/_layouts/services.html @@ -115,13 +115,11 @@
-
-
-

ready to take your security to the next level?

-

Schedule a complimentary introductory call to explore how Distrust can help secure your organization. Learn how we approach security, discuss your challenges, and see if we’re the right fit to work together.

- +
+

ready to take your security to the next level?

+

We help organizations that can't afford to fail. If security is mission-critical for your company, let's talk.

+
diff --git a/_sass/base.scss b/_sass/base.scss index d363689..18d784e 100644 --- a/_sass/base.scss +++ b/_sass/base.scss @@ -157,9 +157,6 @@ a:hover { border: 1px solid var(--light-purple); } -.roadmap-card:hover { - border: 1px solid var(--light-teal); -} @mixin capsule { font-weight: 400; @@ -201,15 +198,45 @@ a:hover { .roadmap-header { display: flex; - justify-content: left; + justify-content: space-between; margin-bottom: 20px; } + .roadmap-header-capsule { display: flex; vertical-align: center; margin-left: 20px; } +.roadmap-title-container { + display: flex; +} + +.roadmap-card:hover { + border: 1px solid var(--light-teal); +} + +.roadmap-item-name { + color: white !important; + font-size: 40px !important; + font-weight: 600; +} + +.roadmap-tagline-line { + font-size: 30px !important; + line-height: 2.2; + color: var(--light-grey) !important; +} + +.roadmap-tagline { + font-size: 40px !important; + color: var(--light-grey) !important; +} + +.roadmap p { + max-width: 700px; +} + .narrow-list > li > p { margin-top: 0px; } @@ -254,7 +281,7 @@ a:hover { .vertical-line-container { position: absolute; - top: 1980px; + top: 2050px; right: 200px; width: 60px; height: 3550px; @@ -300,13 +327,6 @@ a:hover { max-width: 1000px; min-height: 360px; transition: transform 0.7s ease, background-color 0.3s ease; - filter: brightness(50%); -} -.roadmap .flex-container .flex-container-inner .text-well:hover { - background: #1e1e1e; - transform: scale(1.01); - filter: unset; - cursor: pointer; } .roadmap .flex-container .flex-container-inner .text-well:hover .learn-more { @@ -1579,5 +1599,8 @@ pre { line-height: 50px !important; } + .roadmap-header { + flex-direction: column; + } }