/* ===============================
   PART 23
   Final Test + Launch
================================ */

.p23-launch-banner {
    padding: 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0,157,255,0.18), transparent 38%),
        linear-gradient(180deg, rgba(6,16,31,0.98), rgba(2,8,18,0.98));
    border: 1px solid rgba(0,157,255,0.22);
    box-shadow: 0 20px 60px rgba(0,0,0,0.24);
    margin-bottom: 22px;
}

.p23-launch-banner span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,122,0,0.13);
    border: 1px solid rgba(255,122,0,0.26);
    color: #ffe0bd;
    font-weight: 900;
    margin-bottom: 12px;
}

.p23-launch-banner h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 6px;
}

.p23-launch-banner p {
    color: rgba(255,255,255,0.62);
    margin-bottom: 16px;
}

.p23-progress {
    height: 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.p23-progress div {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), #ffb000);
    box-shadow: 0 0 25px rgba(255,122,0,0.35);
}

.p23-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.p23-card {
    padding: 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(0,157,255,0.12), transparent 40%),
        linear-gradient(180deg, rgba(6,16,31,0.98), rgba(2,8,18,0.98));
    border: 1px solid rgba(0,157,255,0.20);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    margin-bottom: 20px;
}

.p23-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.p23-card-head > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,122,0,0.13);
    border: 1px solid rgba(255,122,0,0.24);
    display: grid;
    place-items: center;
    font-size: 27px;
}

.p23-card-head h2 {
    color: #fff;
    margin-bottom: 5px;
}

.p23-card-head p {
    color: rgba(255,255,255,0.58);
}

.p23-checklist {
    display: grid;
    gap: 12px;
}

.p23-checklist label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    font-weight: 800;
}

.p23-checklist input {
    margin-top: 3px;
}

.p23-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.p23-status-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.p23-status-grid small {
    color: rgba(255,255,255,0.58);
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.p23-status-grid strong {
    color: #fff;
    font-size: 28px;
}

.p23-mini-status {
    display: grid;
    gap: 10px;
}

.p23-mini-status div,
.p23-file-grid div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.p23-mini-status span,
.p23-file-grid span {
    color: rgba(255,255,255,0.72);
    font-weight: 800;
}

.p23-mini-status b,
.p23-file-grid b {
    font-weight: 900;
}

.p23-mini-status .ok b,
.p23-file-grid .ok b {
    color: #5ee88a;
}

.p23-mini-status .bad b,
.p23-file-grid .bad b {
    color: #ff9aa5;
}

.p23-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.p23-links-grid a {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(0,157,255,0.12);
    border: 1px solid rgba(0,157,255,0.22);
    color: #dff4ff;
    text-decoration: none;
    font-weight: 900;
    display: grid;
    place-items: center;
    text-align: center;
}

.p23-file-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 1100px) {
    .p23-grid {
        grid-template-columns: 1fr;
    }

    .p23-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .p23-launch-banner,
    .p23-card {
        padding: 18px;
        border-radius: 22px;
    }

    .p23-launch-banner h2 {
        font-size: 34px;
    }

    .p23-card-head {
        align-items: flex-start;
    }

    .p23-card-head > span {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 23px;
    }

    .p23-status-grid,
    .p23-file-grid,
    .p23-links-grid {
        grid-template-columns: 1fr;
    }

    .p23-checklist label {
        font-size: 14px;
    }
}