:root {
    --bg-main: #fbf9f8;
    --bg-card: #ffffff;
    --text-main: #1d1816;
    --text-sub: #5c534e;
    --primary: #eb715c;
    --primary-glow: rgba(235, 113, 92, 0.15);
    --shadow: 0 10px 30px rgba(235, 113, 92, 0.08);
    --shadow-hover: 0 16px 36px rgba(235, 113, 92, 0.16);
    --radius: 20px;
    --border: #ede4e1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Header & Nav */
.synapse-crown {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 249, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.matrix-weave {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.orbit-weave {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.glyph {
    display: flex;
    align-items: center;
    min-width: 0;
}

.glyph img {
    height: 40px;
    width: auto;
    display: block;
}

.strand-tier {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.trace {
    text-decoration: none;
    color: var(--text-sub);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.35s ease;
}

.trace:hover,
.trace.active {
    color: var(--primary);
    background: var(--primary-glow);
}

/* Main Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* Section 1: Security Hero Article */
.beacon-vessel {
    background: linear-gradient(180deg, #ffffff 0%, #fbf9f8 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.crest-vessel {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.crest-primary {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    white-space: normal;
}

.vocal-node {
    font-size: 1.1rem;
    color: var(--text-sub);
    line-height: 1.8;
}

.prism-weave {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.pod-packet {
    flex: 1 1 300px;
    min-width: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pod-packet:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.rune-capsule {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rune-capsule svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.crest-sub {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

/* Section 2: Crypto Architecture Article */
.nexus-matrix {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.band-strand {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-top: 35px;
}

.vessel-weave {
    flex: 1 1 450px;
    min-width: 0;
}

.packet-tier {
    flex: 1 1 450px;
    min-width: 0;
    background: #1e1b18;
    color: #fbf9f8;
    border-radius: var(--radius);
    padding: 30px;
    font-family: monospace;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.node-strand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.node-strand:last-child {
    border-bottom: none;
}

.spark-tag {
    color: #eb715c;
    font-weight: 600;
}

.pulse-spark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(235, 113, 92, 0.3);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    margin-top: 24px;
}

.pulse-spark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(235, 113, 92, 0.4);
}

/* Section 3: Anti-Leak Section */
.zenith-weave {
    margin-bottom: 40px;
}

.matrix-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.capsule-pod {
    flex: 1 1 260px;
    min-width: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

/* Section 4: Compliance Audits Aside */
.tether-vessel {
    background: linear-gradient(135deg, #ffffff 0%, #fff7f5 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
}

.definition-tier {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.term-node {
    flex: 1 1 300px;
    min-width: 0;
}

.term-crest {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-crest svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

/* Footer Section */
.tether-root {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 60px 24px 40px;
}

.echo-base {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.base-column {
    flex: 1 1 200px;
    min-width: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.base-crest {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.base-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.base-trace {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.35s ease;
}

.base-trace:hover {
    color: var(--primary);
}

.copyright-band {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-sub);
    font-size: 0.85rem;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .orbit-weave {
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }
    
    .strand-tier {
        width: 100%;
        justify-content: space-between;
    }
    
    .trace {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .crest-primary {
        font-size: 1.8rem;
    }

    .beacon-vessel,
    .nexus-matrix,
    .tether-vessel {
        padding: 30px 20px;
    }

    .pod-packet,
    .vessel-weave,
    .packet-tier,
    .capsule-pod,
    .term-node {
        flex: 1 1 100%;
    }
}

.synapse-synapse-crown {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.synapse-synapse-crown,
.synapse-synapse-crown *,
.synapse-synapse-crown *::before,
.synapse-synapse-crown *::after {
    box-sizing: border-box;
}

.synapse-synapse-crown nav,
.synapse-synapse-crown div,
.synapse-synapse-crown section,
.synapse-synapse-crown article,
.synapse-synapse-crown aside,
.synapse-synapse-crown p,
.synapse-synapse-crown h1,
.synapse-synapse-crown h2,
.synapse-synapse-crown h3,
.synapse-synapse-crown h4,
.synapse-synapse-crown h5,
.synapse-synapse-crown h6,
.synapse-synapse-crown a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.synapse-synapse-crown p,
.synapse-synapse-crown h1,
.synapse-synapse-crown h2,
.synapse-synapse-crown h3,
.synapse-synapse-crown h4,
.synapse-synapse-crown h5,
.synapse-synapse-crown h6 {
    text-decoration: none;
}

.synapse-synapse-crown img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.synapse-synapse-crown {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.synapse-synapse-crown a.synapse-trace {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.synapse-synapse-crown a.synapse-trace,
.synapse-synapse-crown a.synapse-trace:hover,
.synapse-synapse-crown a.synapse-trace:focus,
.synapse-synapse-crown a.synapse-trace:active,
.synapse-synapse-crown a.synapse-trace.active,
.synapse-synapse-crown a.synapse-trace[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.synapse-synapse-crown{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(251, 249, 248, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #ede4e1;
            padding: 16px 24px;
        }

.synapse-synapse-crown .synapse-matrix-weave{
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

.synapse-synapse-crown .synapse-orbit-weave{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.synapse-synapse-crown .synapse-glyph{
            display: flex;
            align-items: center;
        }

.synapse-synapse-crown .synapse-glyph{
            height: 38px;
            width: auto;
            display: flex;
            align-items: center;
        }

.synapse-synapse-crown .synapse-glyph img{
            height: 38px;
            width: auto;
            object-fit: contain;
        }

.synapse-synapse-crown .synapse-strand-tier{
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

.synapse-synapse-crown .synapse-trace{
            color: #5c534e;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.35s ease;
            min-width: 0;
        }

.synapse-synapse-crown .synapse-trace:hover{
            color: #eb715c;
            background: #fff2ef;
        }

.synapse-synapse-crown .synapse-trace.active{
            color: #d65943;
            background: #fff2ef;
            font-weight: 600;
        }

@media (max-width: 768px){.synapse-synapse-crown .synapse-strand-tier{
                width: 100%;
                margin-top: 12px;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 4px;
            }}

.synapse-synapse-crown {
    background: rgb(251, 249, 248);
    background-image: none;
}

.tether-tether-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.tether-tether-root,
.tether-tether-root *,
.tether-tether-root *::before,
.tether-tether-root *::after {
    box-sizing: border-box;
}

.tether-tether-root nav,
.tether-tether-root div,
.tether-tether-root section,
.tether-tether-root article,
.tether-tether-root aside,
.tether-tether-root p,
.tether-tether-root h1,
.tether-tether-root h2,
.tether-tether-root h3,
.tether-tether-root h4,
.tether-tether-root h5,
.tether-tether-root h6,
.tether-tether-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.tether-tether-root p,
.tether-tether-root h1,
.tether-tether-root h2,
.tether-tether-root h3,
.tether-tether-root h4,
.tether-tether-root h5,
.tether-tether-root h6 {
    text-decoration: none;
}

.tether-tether-root img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.tether-tether-root {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.tether-tether-root a,
.tether-tether-root a:hover,
.tether-tether-root a:focus,
.tether-tether-root a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.tether-tether-root .tether-matrix-weave{
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
        }

.tether-tether-root{
            background: #141210;
            color: #8c827a;
            padding: 60px 24px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.tether-tether-root .tether-root-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

.tether-tether-root .tether-root-brand{
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.tether-tether-root .tether-root-vocal{
            font-size: 0.92rem;
            max-width: 360px;
            line-height: 1.6;
        }

.tether-tether-root .tether-root-crest{
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

.tether-tether-root .tether-root-strand{
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 10px;
        }

.tether-tether-root .tether-root-trace{
            color: #8c827a;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.35s ease;
        }

.tether-tether-root .tether-root-trace:hover{
            color: #eb715c;
        }

.tether-tether-root .tether-root-base{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #6b635c;
        }

@media (max-width: 1024px){.tether-tether-root .tether-root-grid{
                grid-template-columns: 1fr 1fr;
            }}

@media (max-width: 768px){.tether-tether-root .tether-root-grid{
                grid-template-columns: 1fr;
            }}