.muk-app-showcase,
.muk-app-gallery-group {
    background: #fff;
    color: #17151a;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.muk-app-showcase {
    padding: 82px 20px;
    border-top: 1px solid #f1e8ed;
}

.muk-app-showcase__container {
    width: min(1220px, 100%);
    margin: 0 auto;
}

.muk-app-showcase__header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.muk-app-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    border: 1px solid #f1c9d9;
    border-radius: 999px;
    background: #fff8fb;
    color: #b31450;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.muk-app-showcase__header h2,
.muk-app-gallery-group__header h2 {
    margin: 16px 0 12px;
    color: #17151a;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 850;
}

.muk-app-showcase__header p {
    margin: 0 auto;
    color: #64606a;
    font-size: 17px;
    line-height: 1.75;
}

.muk-app-showcase__grid,
.muk-app-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.muk-app-screen-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #eee5ea;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 15px 44px rgba(56, 19, 36, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.muk-app-screen-card:hover {
    transform: translateY(-6px);
    border-color: #e9ccd8;
    box-shadow: 0 24px 62px rgba(56, 19, 36, .12);
}

/*
 * Screenshot assets now contain transparent pixels outside the real phone.
 * The stage stays white, while the file itself displays only the device.
 */
.muk-app-screen-card__image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 450px;
    padding: 24px 18px 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(214, 51, 108, .045), transparent 48%),
        #fff;
    text-decoration: none;
}

.muk-app-screen-card__image::after {
    content: "";
    position: absolute;
    inset: auto 18% 13px;
    height: 24px;
    border-radius: 50%;
    background: rgba(34, 19, 28, .10);
    filter: blur(18px);
    pointer-events: none;
}

.muk-app-screen-card__image img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 410px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    filter: drop-shadow(0 16px 18px rgba(44, 17, 31, .09));
}

.muk-app-screen-card__copy {
    flex: 1;
    padding: 20px 20px 23px;
    border-top: 1px solid #f3edf0;
    background: #fff;
}

.muk-app-screen-card__copy h3 {
    margin: 0 0 9px;
    color: #1e1a21;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.muk-app-screen-card__copy p {
    margin: 0;
    color: #69636d;
    font-size: 14px;
    line-height: 1.65;
}

.muk-app-showcase__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.muk-app-showcase__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #c2185b;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(194, 24, 91, .18);
}

.muk-app-showcase__actions a.secondary {
    border: 1px solid #e6dce2;
    background: #fff;
    color: #2c2730;
    box-shadow: none;
}

.muk-app-gallery-group {
    padding: 62px 20px;
}

.muk-app-gallery-group:nth-of-type(even) {
    background: #fff;
}

.muk-app-gallery-group__header {
    margin-bottom: 28px;
    text-align: left;
}

.muk-app-gallery-group__header h2 {
    font-size: clamp(27px, 3vw, 38px);
}

.muk-app-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.muk-app-screen-card--gallery .muk-app-screen-card__image {
    min-height: 560px;
}

.muk-app-screen-card--gallery .muk-app-screen-card__image img {
    max-height: 515px;
}

@media (max-width: 1050px) {
    .muk-app-showcase__grid,
    .muk-app-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .muk-app-showcase {
        padding: 56px 14px;
    }

    .muk-app-showcase__grid,
    .muk-app-gallery-grid {
        grid-template-columns: 1fr;
    }

    .muk-app-screen-card__image,
    .muk-app-screen-card--gallery .muk-app-screen-card__image {
        min-height: 410px;
        padding: 18px 14px 14px;
    }

    .muk-app-screen-card__image img,
    .muk-app-screen-card--gallery .muk-app-screen-card__image img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 385px;
    }

    .muk-app-showcase__header p {
        font-size: 15px;
    }

    .muk-app-gallery-group {
        padding: 44px 14px;
    }
}
