/* ── LAYOUT ── */
.wrap {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    /* padding: 0 40px; */
}


/* ── HOMEPAGE BLOCK ── */
.homepage-block {
    background: var(--color-background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 130px 0;
    position: relative;
    z-index: 1;
}

.home-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary-color);
}

.home-h2 {
    font-family: Roboto, serif;
    font-weight: 100;
    font-size: clamp(34px, 5.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 24px;
    max-width: 620px;
}

.home-h2 em {
    font-style: italic;
    color: var(--primary-color);
}

.home-body {
    font-size: 17px;
    color: var(--color-text-muted-light);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
}

.home-body strong {
    color: var(--color-text);
    font-weight: 500;
}

.home-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.pill {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--color-text-muted-light);
    border: 1px solid var(--border2);
    padding: 6px 14px;
    border-radius: 100px;
}

.pill.hi {
    color: var(--primary-color);
    border-color: rgba(255, 196, 57, 0.25);
}

.home-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-block;
    background: var(--primary-color);
    color: #09090B;
    padding: 13px 26px;
    text-decoration: none;
    border-radius: 3px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: background 0.15s;
}

.btn-main:hover {
    background: var(--primary-color-d);
}

.btn-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--color-text-muted-light);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.btn-link:hover {
    color: var(--color-text);
}


/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    .wrap {
        padding: 0 20px;
    }

    .hero {
        padding: 160px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .homepage-block {
        padding: 60px 0;
    }
}