/* Showcase */
.showcase {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.1), transparent 70%);
    text-align: center;
}

.showcase-text h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #ffffff 40%, #8e8e93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
}

.showcase-text p {
    font-size: 1.35rem;
    color: var(--text-dim);
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.5;
    font-weight: 400;
}

/* Panels */
.features {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background: transparent;
}

.features h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--white);
}

.features p {
    color: var(--grey-text);
    font-size: 1.125rem;
    line-height: 1.7;
}

.features img {
    border-radius: 12px;
    justify-self: center;
    width: 100%;
    max-width: 600px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mobile {
        display: none;
}

/* Tablet Responsive */
@media (max-width: 768px) {
        .features img {
                width: 100%;
        }
}

@media (max-width: 450px) {
        .showcase {
                height: 450px;
        }

        .showcase .buttons {
                flex-direction: column;
        }

        .showcase h1 {
                font-size: 25px;
        }

        .showcase p {
                font-size: 14px;
        }

        .showcase a {
                width: 100%;
                text-align: center;
        }

        .features .grid {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr;
        }

        .desktop {
                display: none;
        }

        .mobile {
                display: block;
        }
}
