/* Homepage CTA — stop scraping / start shipping */
.cta-section {
    width: 100%;
}

.cta-section__wrap {
    padding-top: clamp(4rem, 10vh, 7rem);
    padding-bottom: clamp(8rem, 18vh, 14rem);
}

.cta-section__panel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #1f1f1f;
    background-color: #000000;
    background-image:
        linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.55) 100%),
        url('../img/web3-1.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.cta-section__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 40rem;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    text-align: left;
}

.cta-section__title {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cta-section__title-muted {
    color: #666666;
}

.cta-section__lead {
    margin: 0;
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.6;
    color: #e4e4e4;
    max-width: 32rem;
}

.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cta-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0 1.375rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta-section__btn--primary {
    color: #0a0a0a;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.cta-section__btn--primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.cta-section__btn--secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-section__btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.cta-section__fineprint {
    margin: 0.75rem 0 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #71717a;
}

@media (max-width: 540px) {
    .cta-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section__btn {
        width: 100%;
    }
}
