.home-hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.home-hero .hero-copy {
    width: min(900px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.home-hero .hero-assurances {
    margin-top: 25px;
    padding: 0 3px;
    justify-content: center;
}

.hero-purchase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 23px 25px;
    border-radius: 15px;
    background: #13213a;
    box-shadow: 0 16px 36px rgba(19, 33, 58, .16);
    color: #fff;
}

.hero-purchase > div {
    display: flex;
    flex-direction: column;
}

.hero-purchase > div > span {
    color: #75edf2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.hero-purchase strong {
    margin: 3px 0;
    font: 700 25px Georgia, serif;
}

.hero-purchase small {
    color: #bdcbe0;
}

.hero-purchase .product-button {
    flex: 0 0 auto;
    margin-top: 0;
    white-space: nowrap;
}

.hero-product-preview {
    position: sticky;
    top: 24px;
    align-self: start;
    margin-top: 32px;
    padding: 26px;
    background: linear-gradient(145deg, #e4f1ff, #e5faf9);
    border-color: #bad6e8;
    box-shadow: 0 20px 50px rgba(25, 55, 91, .12);
}

.preview-heading {
    margin-bottom: 20px;
}

.preview-heading > span {
    display: block;
    color: #1551b9;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.25px;
}

.preview-heading h2 {
    margin: 8px 0 9px;
    color: #13213a;
    font: 700 31px/1.12 Georgia, serif;
    letter-spacing: -.45px;
}

.preview-heading p {
    margin: 0;
    color: #4e6078;
    font-size: 14px;
    line-height: 1.55;
}

.hero-product-preview .preview-window {
    border-color: #b9cbe0;
    box-shadow: 0 18px 38px rgba(29, 49, 78, .16);
}

.preview-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    padding: 11px 13px;
    border-radius: 9px;
    background: #155bd7;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.preview-link:hover,
.preview-link:focus-visible {
    background: #0f4dbb !important;
    color: #fff !important;
}

.preview-link:focus-visible {
    outline: 3px solid rgba(21, 91, 215, .3);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .hero-product-preview {
        position: static;
        width: auto;
        max-width: none;
        margin-top: 0;
    }
}

@media (max-width: 560px) {
    .hero-purchase {
        align-items: stretch;
        flex-direction: column;
        padding: 21px;
    }

    .hero-purchase .product-button {
        text-align: center;
    }

    .hero-product-preview {
        padding: 18px;
    }

    .preview-heading h2 {
        font-size: 27px;
    }
}
