/* Green screen moment, high contrast panel. */
.sg-signal {
    padding: 48px 0;
    background-color: #0f3d28;
    color: #ffffff;
}

.sg-signal__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sg-signal__title {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 1.4vw + 1.2rem, 2.2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sg-signal__body {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 40rem;
}

.sg-signal__demo {
    display: flex;
    justify-content: center;
}

.sg-signal__phone {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    background-color: var(--sg-green);
    border: 4px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sg-signal__phone-text {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw + 1rem, 2.5rem);
    line-height: 1.1;
    text-align: center;
}

@media (min-width: 48rem) {
    .sg-signal {
        padding: 64px 0;
    }

    .sg-signal__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .sg-signal__panel {
        flex: 1;
        min-width: 0;
    }

    .sg-signal__demo {
        flex: 0 0 260px;
        justify-content: flex-end;
    }
}
