/* Product Launch Readiness Checker */
.launch-hero {
    position: relative;
    overflow: hidden;
}

.launch-hero::after {
    content: "";
    position: absolute;
    right: max(24px, 8vw);
    top: 38px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(124, 58, 237, 0.22);
    border-radius: 28px;
    transform: rotate(12deg);
    pointer-events: none;
}

.launch-scoreboard {
    border: 1px solid rgba(124, 58, 237, 0.18);
    box-shadow: 0 18px 50px rgba(58, 58, 58, 0.08);
}

.launch-verdict {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-purple);
}

.launch-context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.launch-category {
    position: relative;
}

.launch-category-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.launch-category-title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.launch-category-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--brand-yellow);
    font-size: 20px;
}

.launch-category h2 {
    margin-bottom: 2px;
}

.launch-category p {
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.65;
}

.category-score {
    font-family: var(--mono);
    font-weight: 900;
    color: var(--brand-charcoal);
    background: rgba(58, 58, 58, 0.06);
    border-radius: 999px;
    padding: 8px 12px;
    white-space: nowrap;
}

.launch-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.56);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.launch-item-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.launch-item-title {
    font-weight: 800;
    line-height: 1.35;
}

.launch-item-help {
    font-size: 12px;
    line-height: 1.45;
    opacity: 0.62;
    margin-top: 4px;
}

.launch-status-pill {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(58, 58, 58, 0.06);
    white-space: nowrap;
}

.launch-item .rate-btns {
    grid-template-columns: repeat(4, 1fr);
}

.launch-report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 16px 0;
}

.launch-report-box {
    padding: 14px;
    border-radius: 12px;
    background: rgba(243, 223, 108, 0.38);
    border: 1px solid rgba(58, 58, 58, 0.08);
}

.launch-report-box strong {
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 700px) {
    .launch-context-grid,
    .launch-report-grid {
        grid-template-columns: 1fr;
    }

    .launch-category-header,
    .launch-item-top {
        flex-direction: column;
        gap: 10px;
    }

    .launch-item .rate-btns {
        grid-template-columns: 1fr 1fr;
    }

    .launch-hero::after {
        display: none;
    }
}
