/* ppuzzl.net -- brutalist, ma-negative-space layout */
/* Colors: #FAFAFA bg, #0A0A0A text, #888888 secondary, #E63946 accent */
/* Font: "Space Mono" (Google Fonts) -- bold 700, regular 400 */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    line-height: 1.75;
    color: #0A0A0A;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

/* ---- Hero ---- */

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.75;
    color: #0A0A0A;
    letter-spacing: -0.02em;
}

/* ---- Content Blocks ---- */

.block {
    padding-top: 25vh;
    padding-bottom: 0;
}

.block-left {
    margin-left: 18vw;
    margin-right: auto;
    max-width: 50vw;
}

.block-right {
    margin-left: auto;
    margin-right: 15vw;
    max-width: 50vw;
    text-align: right;
}

/* ---- Typography ---- */

.heading {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.75;
    color: #0A0A0A;
    margin-bottom: 0.5em;
}

.text-primary {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 400;
    line-height: 1.75;
    color: #0A0A0A;
}

.text-secondary {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 400;
    line-height: 1.75;
    color: #888888;
}

/* ---- Section Markers (12px black squares) ---- */

.marker {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #0A0A0A;
    margin-bottom: 2rem;
}

.block-right .marker {
    margin-left: auto;
}

/* ---- Accent Dot (red, one per viewport) ---- */

.accent-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E63946;
    margin-top: 2rem;
}

.block-right .accent-dot {
    margin-left: auto;
}

/* ---- Footer ---- */

.footer {
    padding-top: 25vh;
    padding-bottom: 8vh;
    margin-left: 18vw;
    margin-right: auto;
    max-width: 50vw;
}

.footer .text-secondary {
    color: #888888;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
    .block-left {
        margin-left: 8vw;
        max-width: 80vw;
    }

    .block-right {
        margin-right: 8vw;
        max-width: 80vw;
    }

    .footer {
        margin-left: 8vw;
        max-width: 80vw;
    }
}