.feature-showcase {
    overflow: hidden;
    padding: 104px 24px 120px;
    background: #f5f5f7;
}

.feature-showcase-header {
    max-width: 780px;
    margin: 0 auto 76px;
    text-align: center;
}

.feature-showcase-title {
    margin: 0 0 16px;
    color: #1d1d1f;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.feature-showcase-subtitle {
    margin: 0;
    color: #6e6e73;
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0;
}

.feature-showcase-list {
    display: flex;
    max-width: 1120px;
    margin: 0 auto;
    flex-direction: column;
    gap: 104px;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.48fr);
    align-items: center;
    gap: 68px;
}

.feature-showcase-item:nth-child(even) .feature-showcase-copy {
    order: 2;
}

.feature-showcase-item:nth-child(even) {
    grid-template-columns: minmax(0, 1.48fr) minmax(250px, 0.72fr);
}

.feature-showcase-item:nth-child(even) .feature-showcase-media {
    order: 1;
}

.feature-showcase-copy {
    width: 100%;
    max-width: 360px;
    justify-self: center;
}

.feature-showcase-number {
    display: block;
    margin-bottom: 18px;
    color: #e85d04;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
}

.feature-showcase-copy h3 {
    margin: 0 0 16px;
    color: #1d1d1f;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.feature-showcase-copy p {
    margin: 0;
    color: #6e6e73;
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0;
}

.feature-showcase-media {
    position: relative;
    width: 100%;
    aspect-ratio: 20 / 13;
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.feature-showcase-media video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 19px;
    background: #111318;
    object-fit: cover;
}

@media (max-width: 920px) {
    .feature-showcase-item {
        grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
        gap: 40px;
    }

    .feature-showcase-item:nth-child(even) {
        grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    }

    .feature-showcase-copy h3 {
        font-size: 30px;
    }
}

@media (max-width: 734px) {
    .feature-showcase {
        padding: 72px 20px 88px;
    }

    .feature-showcase-header {
        margin-bottom: 52px;
    }

    .feature-showcase-title {
        font-size: 34px;
    }

    .feature-showcase-subtitle {
        font-size: 17px;
    }

    .feature-showcase-list {
        gap: 68px;
    }

    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-showcase-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-showcase-item:nth-child(even) .feature-showcase-copy,
    .feature-showcase-item:nth-child(even) .feature-showcase-media {
        order: initial;
    }

    .feature-showcase-copy {
        max-width: none;
        padding: 0 4px;
    }

    .feature-showcase-number {
        margin-bottom: 12px;
    }

    .feature-showcase-copy h3 {
        margin-bottom: 12px;
        font-size: 28px;
    }

    .feature-showcase-copy p {
        font-size: 16px;
    }

    .feature-showcase-media {
        padding: 5px;
        border-radius: 19px;
        box-shadow:
            0 20px 52px rgba(15, 23, 42, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    }

    .feature-showcase-media video {
        border-radius: 14px;
    }
}

@media (prefers-color-scheme: dark) {
    .feature-showcase {
        background: #000;
    }

    .feature-showcase-title,
    .feature-showcase-copy h3 {
        color: #f5f5f7;
    }

    .feature-showcase-subtitle,
    .feature-showcase-copy p {
        color: #a1a1a6;
    }

    .feature-showcase-number {
        color: #fb923c;
    }

    .feature-showcase-media {
        border-color: rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.08);
        box-shadow:
            0 34px 90px rgba(0, 0, 0, 0.58),
            inset 0 1px 0 rgba(255, 255, 255, 0.16),
            inset 0 -1px 0 rgba(0, 0, 0, 0.48);
    }
}
