.grid-node span,
body {
    font-family: "JetBrains Mono", monospace;
    color: var(--ink);
}
.algo-col,
.apex-section,
.grid-node {
    text-align: center;
}
:root {
    --bg: #ffffff;
    --ink: #050505;
    --gold: #c5a059;
    --border: #eaeaea;
}
body {
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a:focus,
a:focus-visible {
    outline: 0;
}
h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
}
.mono {
    font-family: "JetBrains Mono", monospace;
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 0.1em;
}
.site-logo {
    width: 280px;
    margin-bottom: 30px;
}
.apex-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.apex-section h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.gold-line-v {
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-top: 40px;
}
.manifesto-section {
    padding: 15vh 0;
}
.reading-column {
    max-width: 600px;
}
.manifesto-section h2,
.philosophy-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}
.divider-ink {
    height: 1px;
    background: var(--ink);
    width: 100%;
    margin-top: 3rem;
}
.grid-node {
    border: 1px solid var(--border);
    padding: 4rem 2rem;
    transition: background 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.grid-node h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.grid-node span {
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 0.1em;
}
.node-meta {
    color: var(--gold);
    font-weight: 700;
}
.algorithm-section {
    padding: 10vh 0;
}
.algo-header {
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}
footer div {
    font-size: 12px;
}
.extreme-space {
    margin-bottom: 10rem;
}
@media (max-width: 768px) {
    .site-logo {
        max-width: 180px;
        margin-bottom: 15px;
    }
    .manifesto-section h2,
    .philosophy-title {
        font-size: 2.3rem;
    }
    .extreme-space {
        margin-bottom: 2rem;
    }
    .grid-node.border-end-0 {
        border-right: 1px solid var(--border) !important;
        border-bottom: 0 !important;
    }
    .manifesto-section {
        text-align: center;
    }
    .divider-ink {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}
