diff --git a/_includes/blog-about-distrust.html b/_includes/blog-about-distrust.html
new file mode 100644
index 0000000..6fa4cdd
--- /dev/null
+++ b/_includes/blog-about-distrust.html
@@ -0,0 +1,10 @@
+
About Distrust
+
+The Distrust team has helped build and secure some of the highest-risk systems in the world. This includes vaulting infrastructure at BitGo, Unit410, and Turnkey, as well as security work with electrical grid operators, industrial control systems, and other mission-critical systems.
+
+We've conducted deep security due diligence across most major custodians. Through our experience with organizations that operate under constant threat—where **every class of attack is viable**—we've developed a methodology and set of open source tools designed to defend against even the most sophisticated adversaries.
+
+Today, we're taking the hard-earned lessons from that work and sharing them with the broader community. Our goal is to help others strengthen their security posture by making what we've learned—and the open source tools we've built—available to everyone.
+
+Looking for help analyzing and mitigating security risks in your own organization? Talk to us.
+
diff --git a/_includes/footer.html b/_includes/footer.html
index 13779a8..80564e2 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,17 +1,15 @@
+
diff --git a/_includes/nav-links.html b/_includes/nav-links.html
new file mode 100644
index 0000000..b93356f
--- /dev/null
+++ b/_includes/nav-links.html
@@ -0,0 +1,10 @@
+{%- for path in page_paths -%}
+ {%- assign my_page = site.pages | where: "path", path | first -%}
+ {%- if my_page.title -%}
+ {%- if my_page.title != 'Home' -%}
+
+ {%- endif -%}
+ {%- endif -%}
+{%- endfor -%}
diff --git a/_includes/values.html b/_includes/values.html
index 92daa74..f7fe20e 100644
--- a/_includes/values.html
+++ b/_includes/values.html
@@ -4,11 +4,11 @@
Every day, we apply these guiding principles to how we think, build, and secure systems.
-
+
eliminate centralized trust
open source everything
security beyond compliance
- move thoughtfully and improve things
+ move thoughtfully & improve things
impact over profit
diff --git a/_layouts/post.html b/_layouts/post.html
index 32efb00..ea3bc88 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -10,11 +10,12 @@
{{ page.date | date: "%b %e, %Y" }}
{{ page.content | number_of_words | divided_by: 200 }} min read
- {{page.title}}
-
+ {{page.title}}
{{ content }}
+
+ {% include blog-about-distrust.html %}
{% for author in page.authors %}
diff --git a/_posts/2025-04-02-bybit-safe-report.md b/_posts/2025-04-02-bybit-safe-report.md
index 8574780..d8b6a7c 100644
--- a/_posts/2025-04-02-bybit-safe-report.md
+++ b/_posts/2025-04-02-bybit-safe-report.md
@@ -162,14 +162,3 @@ Implementing these strategies can be technically demanding. They represent two e
This high-level overview is meant to illustrate the kinds of problems we focus on at Distrust. Depending on the chosen strategy and organizational context, implementation can take anywhere from a few weeks to several years, especially as tooling continues to mature.
----
-
-## About Distrust
-
-The Distrust team has helped build and secure some of the highest-risk systems in the world. This includes vaulting infrastructure at BitGo, Unit410, and Turnkey, as well as security work with electrical grid operators, industrial control systems, and other mission-critical systems.
-
-We've conducted deep security due diligence across most major custodians. Through our experience with organizations that operate under constant threat—where **every class of attack is viable**—we've developed a methodology and set of open source tools designed to defend against even the most sophisticated adversaries.
-
-Today, we're taking the hard-earned lessons from that work and sharing them with the broader community. Our goal is to help others strengthen their security posture by making what we've learned—and the open source tools we've built—available to everyone.
-
-**Looking for help analyzing and mitigating security risks in your own organization? [Talk to us](https://distrust.co/contact.html)**.
diff --git a/_sass/base.scss b/_sass/base.scss
index a8b44c1..b7a6b73 100644
--- a/_sass/base.scss
+++ b/_sass/base.scss
@@ -606,13 +606,21 @@ footer {
}
.footer-link {
- color: var(--light-grey);
- display: inline-block;
- text-decoration: none;
+ display: flex;
+ flex-direction: row;
+}
+
+.footer-link div {
+ display: flex;
margin-left: 20px;
}
-.footer-link:hover {
+.footer-link div a {
+ text-decoration: none;
+ color: var(--light-grey);
+}
+
+.footer-link div a:hover {
background: transparent;
color: white;
}
@@ -699,78 +707,82 @@ hr {
align-items: center;
}
-.menu-button-container {
- display: none;
- width: 50px;
- height: 50px;
- cursor: pointer;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-}
-
#menu-toggle {
- display: none;
+ display: none;
}
-.menu-button,
-.menu-button::before,
-.menu-button::after {
- display: block;
- background-color: #fff;
- position: absolute;
- height: 4px;
- width: 30px;
- transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
- border-radius: 2px;
+.hamburger-wrapper {
+ position: relative;
+ z-index: 100;
+ width: 50px;
+ height: 50px;
}
-.menu-button::before {
- content: '';
- margin-top: -8px;
+.hamburger-menu {
+ display: inline-block;
+ cursor: pointer;
+ position: relative;
+ width: 30px;
+ height: 22px;
+ z-index: 2;
}
-.menu-button::after {
- content: '';
- margin-top: 8px;
+.hamburger-menu span {
+ display: block;
+ position: absolute;
+ height: 4px;
+ width: 100%;
+ background-color: #fff;
+ border-radius: 2px;
+ left: 0;
+ transition: transform 0.4s, top 0.4s, opacity 0.4s;
}
-#menu-toggle:checked+.menu-button-container .menu-button::before {
- margin-top: 0px;
- transform: rotate(405deg);
-}
+.hamburger-menu span:nth-child(1) { top: 0; }
+.hamburger-menu span:nth-child(2) { top: 9px; }
+.hamburger-menu span:nth-child(3) { top: 18px; }
-#menu-toggle:checked+.menu-button-container .menu-button {
- background: rgba(255, 255, 255, 0);
+#menu-toggle:checked + .hamburger-menu span:nth-child(1) {
+ transform: rotate(45deg);
+ top: 9px;
}
-
-#menu-toggle:checked+.menu-button-container .menu-button::after {
- margin-top: 0px;
- transform: rotate(-405deg);
+#menu-toggle:checked + .hamburger-menu span:nth-child(2) {
+ opacity: 0;
+}
+#menu-toggle:checked + .hamburger-menu span:nth-child(3) {
+ transform: rotate(-45deg);
+ top: 9px;
}
.menu-content {
- position: absolute;
+ border-bottom: 1px solid var(--light-grey);
+ position: absolute;
+ top: 100px;
+ left: 0;
+ width: 100%;
+ background: var(--background-color, #222);
+ z-index: 50;
+ padding: 20px 0;
display: none;
- background: var(--background-color);
- text-align: right;
- margin-top: 100px;
- width: 100%;
- z-index: 2;
+}
+
+#menu-toggle:checked ~ .menu-content {
+ display: block;
}
.inner-menu-content {
- border-bottom: 1px solid white;
- margin-top: 50px;
+ margin: 20px 30px;
+}
+
+.inner-menu-content a {
+ color: white;
+ text-decoration: none;
+ display: block;
+ padding: 10px 0;
}
.inner-menu-content a:hover {
- background: unset;
- color: white;
-}
-
-.menu-content div {
- margin: 30px;
+ color: #ccc;
}
/**
@@ -809,10 +821,6 @@ hr {
0px 10px 30px rgba(0, 0, 0, 0.3);
}
-.team .card:hover {
- border: 1px solid var(--mid-grey);
-}
-
.team .title {
text-transform: unset;
}
@@ -824,9 +832,13 @@ hr {
color: var(--light-grey);
}
+.team a {
+ color: var(--light-purple);
+}
+
.team a:hover {
background: unset;
- color: white;
+ text-decoration: underline;
}
.team img {
@@ -1221,6 +1233,12 @@ section {
text-decoration: none;
}
+.values-container {
+ font-size: 30px;
+ text-align: right;
+ direction: rtl;
+}
+
.text-well {
max-width: 100%;
}
@@ -1707,8 +1725,8 @@ pre {
}
.blog h1 {
- font-size: 2.5rem !important;
- line-height: 2.2rem !important;
+ font-size: 2rem !important;
+ line-height: 2rem !important;
font-weight: 600 !important;
}
@@ -1919,8 +1937,13 @@ pre {
}
.footer-link {
+ flex-direction: column !important;
+ }
+
+ .footer-link div {
margin-bottom: 20px;
min-width: 200px;
+ display: inline;
}
.tall-section {
@@ -1995,9 +2018,12 @@ pre {
flex-direction: column-reverse;
}
- .footer-link {
+ .footer-link div {
+ margin-bottom: 20px;
+ }
+
+ .footer-link div a {
font-size: 1rem !important;
- margin-bottom: 10px;
}
.quote {
@@ -2005,6 +2031,11 @@ pre {
line-height: 1.5rem;
}
+ .values-container {
+ text-align: left;
+ direction: ltr;
+ }
+
/**
* Services Page
*/
diff --git a/assets/js/main.js b/assets/js/main.js
index 526cae2..4ba3f6f 100644
--- a/assets/js/main.js
+++ b/assets/js/main.js
@@ -68,7 +68,6 @@ function initializeCarousel() {
function initializeCompaniesCarousel() {
const slider = document.getElementById('logoSlider');
- // Duplicate the existing logos by appending the same HTML again:
slider.innerHTML += slider.innerHTML;
let offset = 0;
@@ -78,7 +77,6 @@ function initializeCompaniesCarousel() {
offset -= speed;
slider.style.transform = `translateX(${offset}px)`;
- // After half of the total (2 sets) is scrolled, reset
if (Math.abs(offset) >= slider.scrollWidth / 2) {
offset = 0;
}