/* ============================================================
   Secure Score Thank You Page
   Prefix: ssty-
   ============================================================ */

/* ── Hero section ── */
.ssty-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background: #151111;
}

.ssty-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ── Container ── */
.ssty-container {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 0 auto;
    padding: 160px 24px 80px;
    text-align: center;
}

/* ── Title ── */
.ssty-hero__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 32px;
}

/* ── Description ── */
.ssty-hero__desc {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.65;
    color: #fff;
    max-width: 100%;
    margin: 0 auto 40px;
}

/* ── Subheadline ── */
.ssty-hero__sub {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.5;
    color: #fff;
    margin: 0 0 36px;
}

/* ── Buttons row ── */
.ssty-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ssty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    color: #fff;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50px;
    padding: 19px 45px;
    text-decoration: none;
    backdrop-filter: blur(6px) saturate(1.1);
    -webkit-backdrop-filter: blur(6px) saturate(1.1);
    box-shadow:
        inset 3px 3px 8px rgba(255, 255, 255, 0.1),
        inset -3px -3px 6px rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}

.ssty-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.06) 60%, rgba(255, 255, 255, 0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ssty-btn:hover,
.ssty-btn:focus,
.ssty-btn:active {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #fff;
    text-decoration: none;
    outline: none;
    box-shadow:
        inset 3px 3px 8px rgba(255, 255, 255, 0.1),
        inset -3px -3px 6px rgba(255, 255, 255, 0.05);
}

/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
    .ssty-container {
        padding: 140px 32px 70px;
    }

    .ssty-hero__title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ssty-container {
        padding: 120px 24px 60px;
    }

    .ssty-hero__title {
        font-size: 2rem;
    }

    .ssty-hero__desc {
        font-size: 1rem;
    }

    .ssty-hero__sub {
        font-size: 1.3rem;
    }

    .ssty-br-desktop {
        display: none;
    }

    .ssty-hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .ssty-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 36px;
        font-size: 1.1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .ssty-container {
        padding: 110px 20px 50px;
    }

    .ssty-hero__title {
        font-size: 1.75rem;
    }

    .ssty-hero__desc {
        font-size: 0.95rem;
    }

    .ssty-hero__sub {
        font-size: 1.15rem;
    }

    .ssty-btn {
        max-width: 260px;
        padding: 14px 30px;
        font-size: 1rem;
    }
}