* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #000;
}

body {
    font-family: "Inter", sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: #fff;
    color: #000;
}

:root {
    --black: #000;
    --white: #fff;
    --bg: #000;
    --bg-soft: #050505;
    --surface: #0a0a0a;
    --surface-2: #101010;
    --border: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.25);
    --text: #fff;
    --text-soft: #d4d4d4;
    --text-muted: #8a8a8a;
    --text-dark: #555;
    --radius: 18px;
    --container: 1180px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    max-width: 760px;
    margin-bottom: 65px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 13px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
}

h2 {
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -0.045em;
    margin-bottom: 22px;
}

.section-description {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 680px;
}

.muted {
    color: var(--text-muted);
}

.background-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
    z-index: -3;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: 999;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.loader-line {
    width: 140px;
    height: 1px;
    background: #333;
    margin: 20px auto;
    overflow: hidden;
}

.loader-progress {
    width: 35%;
    height: 100%;
    background: #fff;
    animation: loader 1.3s infinite ease-in-out;
}

.loader-text {
    font-size: 11px;
}

@keyframes loader {
    0% {
        transform: translateX(-140px);
    }

    100% {
        transform: translateX(140px);
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

nav.scrolled {
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(18px);
    border-color: var(--border);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 19px;
}

.logo-mark {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.logo-mark::before {
    top: 3px;
    left: 3px;
}

.logo-mark::after {
    bottom: 3px;
    right: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 13px;
    color: #999;
}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(54px, 8vw, 105px);
    letter-spacing: -0.065em;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #777;
}

.hero-description {
    max-width: 730px;
    color: #a0a0a0;
    font-size: clamp(17px, 2vw, 21px);
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 19px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #fff;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: #fff;
    color: #000;
}

.button-primary:hover {
    background: #ddd;
}

.button-secondary {
    background: transparent;
    color: #fff;
    border-color: var(--border-strong);
}

.button-secondary:hover {
    background: #fff;
    color: #000;
}

.hero-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
}

.status {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
    padding: 8px 12px;
    border-radius: 7px;
    color: #aaa;
    font-size: 12px;
}

.status strong {
    color: #fff;
}

#networkCanvas {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 53%;
    height: 70%;
    opacity: 0.65;
    pointer-events: none;
}

.principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.principle {
    padding: 35px 25px;
    border-right: 1px solid var(--border);
}

.principle:last-child {
    border-right: 0;
}

.principle-number {
    font-size: 11px;
    color: #666;
    margin-bottom: 22px;
}

.principle h3 {
    font-size: 17px;
    margin-bottom: 9px;
}

.principle p {
    color: #777;
    font-size: 13px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 28px;
    color: #fff;
}

.feature-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #888;
    font-size: 14px;
}

.feature-list {
    margin-top: 23px;
    display: grid;
    gap: 10px;
}

.feature-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
    font-size: 13px;
}

.feature-list i {
    color: #fff;
    margin-top: 4px;
    font-size: 10px;
}

.architecture {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #050505;
    overflow: hidden;
    margin-top: 18px;
}

.architecture-header {
    padding: 30px 34px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.architecture-header h3 {
    font-size: 21px;
}

.architecture-header p {
    color: #777;
    font-size: 13px;
    max-width: 480px;
}

.network-chain {
    padding: 65px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
}

.node {
    flex: 0 0 auto;
    width: 130px;
    height: 130px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #080808;
    position: relative;
}

.node::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 15px;
    right: 22px;
}

.node-name {
    font-size: 17px;
    font-weight: 700;
}

.node-type {
    color: #666;
    font-size: 10px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.connection {
    width: 55px;
    height: 1px;
    background: #444;
    position: relative;
}

.connection::after {
    content: "›";
    position: absolute;
    right: -2px;
    top: -12px;
    color: #777;
    font-size: 20px;
}

.architecture-note {
    border-top: 1px solid var(--border);
    padding: 23px 34px;
    color: #777;
    font-size: 13px;
    text-align: center;
}

.flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 45px;
}

.flow-step {
    min-height: 190px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.flow-step-number {
    font-size: 11px;
    color: #555;
    margin-bottom: 30px;
}

.flow-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 12px;
    color: #777;
}

.flow-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    border: 1px solid #333;
    background: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 2;
    font-size: 11px;
}

.storage-diagram {
    margin-top: 55px;
    padding: 45px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #050505;
}

.storage-user {
    text-align: center;
    margin-bottom: 40px;
}

.diagram-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 65px;
    border: 1px solid #555;
    background: #0a0a0a;
    border-radius: 9px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
}

.diagram-arrow-down {
    width: 1px;
    height: 38px;
    background: #444;
    margin: 0 auto;
}

.split-label {
    text-align: center;
    color: #777;
    font-size: 12px;
    margin: 20px 0;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 850px;
    margin: 0 auto;
}

.storage-column {
    text-align: center;
}

.chunk {
    border: 1px solid #444;
    background: #0b0b0b;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 10px;
    font-size: 12px;
}

.backup {
    border: 1px dashed #444;
    color: #999;
    border-radius: 8px;
    padding: 14px;
    font-size: 11px;
}

.storage-caption {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.messaging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.chat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 32px;
}

.chat-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.chat-card > p {
    color: #777;
    font-size: 13px;
    margin-bottom: 35px;
}

.chat-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    padding: 15px 0 20px;
}

.mini-node {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border: 1px solid #444;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    background: #080808;
}

.mini-line {
    width: 45px;
    height: 1px;
    background: #444;
    flex: 0 0 auto;
}

.chat-security {
    border-top: 1px solid var(--border);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    gap: 10px;
    color: #888;
    font-size: 12px;
}

.group-diagram {
    margin-top: 25px;
    min-height: 230px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-center {
    width: 72px;
    height: 72px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    background: #0a0a0a;
    z-index: 2;
}

.group-peer {
    position: absolute;
    width: 55px;
    height: 55px;
    border: 1px solid #444;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #080808;
    font-size: 10px;
}

.group-peer:nth-child(2) {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.group-peer:nth-child(3) {
    bottom: 20px;
    left: 15%;
}

.group-peer:nth-child(4) {
    bottom: 20px;
    right: 15%;
}

.group-peer:nth-child(5) {
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
}

.group-peer:nth-child(6) {
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
}

.messaging-features {
    margin-top: 18px;
}

.participation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.participation-box {
    padding: 35px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
}

.participation-box h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.participation-box p {
    color: #888;
    font-size: 14px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 23px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 9px;
}

.requirement-icon {
    width: 37px;
    height: 37px;
    flex: 0 0 auto;
    border: 1px solid #444;
    border-radius: 8px;
    display: grid;
    place-items: center;
}

.requirement span {
    color: #999;
    font-size: 12px;
}

.compute {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
    padding: 45px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.compute h3 {
    font-size: 34px;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.compute p {
    color: #888;
    font-size: 14px;
}

.compute-points {
    margin-top: 30px;
    display: grid;
    gap: 13px;
}

.compute-point {
    display: flex;
    gap: 12px;
    color: #aaa;
    font-size: 13px;
}

.compute-point i {
    margin-top: 4px;
    color: #fff;
}

.compute-visual {
    min-height: 320px;
    border: 1px solid #222;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.compute-core {
    width: 105px;
    height: 105px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 12px;
    background: #050505;
    z-index: 2;
}

.compute-ring {
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px dashed #333;
    border-radius: 50%;
    animation: spin 16s linear infinite;
}

.compute-ring-2 {
    width: 270px;
    height: 270px;
    animation-direction: reverse;
    animation-duration: 22s;
}

.compute-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px;
    background: #080808;
}

.compute-node:nth-child(4) {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.compute-node:nth-child(5) {
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.compute-node:nth-child(6) {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.compute-node:nth-child(7) {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.security-card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 14px;
    padding: 30px;
}

.security-card h3 {
    font-size: 18px;
    margin-bottom: 11px;
}

.security-card p {
    color: #777;
    font-size: 13px;
}

.roadmap {
    position: relative;
    border-left: 1px solid #222;
    margin-left: 12px;
}

.roadmap-item {
    position: relative;
    padding: 0 0 60px 50px;
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-dot {
    position: absolute;
    left: -6px;
    top: 5px;
    width: 11px;
    height: 11px;
    border: 2px solid #fff;
    background: #000;
    border-radius: 50%;
}

.roadmap-phase {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.roadmap-item h3 {
    font-size: 22px;
    margin-bottom: 9px;
}

.roadmap-item p {
    color: #777;
    font-size: 13px;
    max-width: 650px;
}

.roadmap-current .roadmap-dot {
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.team-card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius);
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.team-avatar {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border: 1px solid #444;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: #080808;
}

.team-card h3 {
    font-size: 19px;
    margin-bottom: 5px;
}

.team-role {
    color: #777;
    font-size: 12px;
}

.open-source {
    border: 1px solid #fff;
    border-radius: var(--radius);
    padding: 60px;
    background: #fff;
    color: #000;
    text-align: center;
}

.open-source .eyebrow {
    border-color: rgba(0,0,0,0.15);
    color: #555;
}

.open-source .eyebrow::before {
    background: #000;
}

.open-source h2 {
    color: #000;
}

.open-source p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    font-size: 15px;
}

.open-source-note {
    margin-top: 25px;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 7px;
    color: #555;
    font-size: 12px;
}

.faq {
    max-width: 850px;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 23px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.faq-question i {
    color: #777;
    transition: transform 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: #777;
    font-size: 13px;
    padding-bottom: 23px;
    max-width: 720px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.connect {
    text-align: center;
    padding-bottom: 130px;
}

.connect h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.connect p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #777;
    font-size: 14px;
}

.socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #888;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.social:hover {
    border-color: #fff;
    color: #000;
    background: #fff;
}

footer {
    border-top: 1px solid var(--border);
    padding: 35px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    color: #666;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
    color: #555;
    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
}

.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 950px) {

    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        padding: 20px;
        background: #080808;
        border: 1px solid var(--border);
        border-radius: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 5px;
    }

    .mobile-menu {
        display: block;
    }

    #networkCanvas {
        opacity: 0.25;
        width: 100%;
        right: 0;
    }

    .principles {
        grid-template-columns: repeat(2, 1fr);
    }

    .principle:nth-child(2) {
        border-right: 0;
    }

    .principle:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .flow {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        display: none;
    }

    .compute {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .section {
        padding: 85px 0;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 75px);
    }

    .feature-grid,
    .messaging-grid,
    .participation,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .principle {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .principle:last-child {
        border-bottom: 0;
    }

    .storage-grid {
        grid-template-columns: 1fr;
    }

    .compute {
        padding: 28px;
    }

    .open-source {
        padding: 40px 25px;
    }

    .network-chain {
        justify-content: flex-start;
    }

    .architecture-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}