/* Investor Pass / Disclaimer Section */

.investor-pass {
    background: #F1F1F8;
    width: 100%;
    padding: 0 24px 64px;
}

.investor-pass__inner {
    max-width: 806px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.investor-pass__title {
    color: #040548;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    padding-top: 1.5rem;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.investor-pass__description {
    color: #334155;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.investor-pass__cta {
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    margin-top: 12px;
    border-radius: 35px;
    border: none;
    background: radial-gradient(139.49px at 50% 2.46%, #7B1B3D 0%, #B3174F 50%, #EB1260 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.investor-pass__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(235, 18, 96, 0.35);
}

/* Mobile */
@media (max-width: 640px) {
    .investor-pass__description {
        font-size: 16px;
    }

    .investor-pass__cta {
        white-space: normal;
        height: auto;
        padding: 14px 24px;
        text-align: center;
    }
}
