.pts-launch-checklist-tool {
    --pts-navy: #14213d;
    --pts-red: #e52e35;
    --pts-line: #dfe7f3;
    --pts-muted: #5b667a;
    background: #fff;
    border: 1px solid var(--pts-line);
    box-shadow: 0 18px 44px rgba(20,33,61,.09);
    color: var(--pts-navy);
    overflow: hidden;
}

.pts-launch-hero {
    background: linear-gradient(135deg, #17254f 0%, #273f79 58%, #e52e35 100%);
    color: #fff;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) 220px;
    padding: clamp(26px, 5vw, 54px);
}

.pts-launch-hero p {
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.55;
    margin: 12px 0 0;
    max-width: 760px;
}

.pts-launch-kicker {
    color: #ffb7ba;
    display: block;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pts-launch-hero h1 {
    color: #fff;
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .98;
    margin: 0;
}

.pts-launch-score {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.28);
    display: grid;
    gap: 10px;
    padding: 20px;
}

.pts-launch-score span {
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pts-launch-score strong {
    color: #fff;
    font-size: 48px;
    font-weight: 950;
    line-height: 1;
}

.pts-launch-progress-track {
    background: rgba(255,255,255,.2);
    height: 8px;
    overflow: hidden;
}

.pts-launch-progress-fill {
    background: #fff;
    height: 100%;
    transition: width .25s ease;
}

.pts-launch-body {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 320px;
    padding: 22px;
}

.pts-launch-phases {
    display: grid;
    gap: 14px;
}

.pts-launch-phase {
    border: 1px solid var(--pts-line);
    background: #fff;
}

.pts-launch-phase button {
    align-items: center;
    background: #f8faff;
    border: 0;
    color: var(--pts-navy);
    cursor: pointer;
    display: grid;
    gap: 14px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 14px 16px;
    text-align: left;
    width: 100%;
}

.pts-launch-number {
    align-items: center;
    background: var(--pts-navy);
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.pts-launch-phase h2 {
    color: var(--pts-navy);
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.pts-launch-phase p {
    color: var(--pts-muted);
    font-size: 13px;
    line-height: 1.45;
    margin: 3px 0 0;
}

.pts-launch-chevron {
    color: #7a869a;
    font-weight: 950;
}

.pts-launch-task-list {
    border-top: 1px solid var(--pts-line);
    display: grid;
}

.pts-launch-task {
    align-items: start;
    border-bottom: 1px solid #edf1f7;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 22px minmax(0, 1fr);
    padding: 14px 16px;
}

.pts-launch-task:last-child {
    border-bottom: 0;
}

.pts-launch-task input {
    accent-color: #16a34a;
    height: 18px;
    margin-top: 2px;
    width: 18px;
}

.pts-launch-task strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
}

.pts-launch-task span {
    color: var(--pts-muted);
    display: block;
    font-size: 13px;
    line-height: 1.45;
    margin-top: 3px;
}

.pts-launch-task.is-done {
    background: #f0fdf4;
}

.pts-launch-task.is-done strong {
    color: #166534;
    text-decoration: line-through;
}

.pts-launch-side {
    align-self: start;
    display: grid;
    gap: 14px;
    position: sticky;
    top: 18px;
}

.pts-launch-panel {
    background: #f8faff;
    border: 1px solid var(--pts-line);
    padding: 18px;
}

.pts-launch-panel h3 {
    color: var(--pts-navy);
    font-size: 17px;
    font-weight: 950;
    margin: 0 0 10px;
}

.pts-launch-panel p,
.pts-launch-panel li {
    color: var(--pts-muted);
    font-size: 13px;
    line-height: 1.55;
}

.pts-launch-panel ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.pts-launch-actions {
    display: grid;
    gap: 10px;
}

.pts-launch-actions button,
.pts-launch-actions a {
    align-items: center;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    text-decoration: none;
}

.pts-launch-actions a {
    background: var(--pts-red);
    color: #fff;
}

.pts-launch-actions button {
    background: #fff;
    border: 1px solid var(--pts-line);
    color: var(--pts-navy);
}

@media (max-width: 900px) {
    .pts-launch-hero,
    .pts-launch-body {
        grid-template-columns: 1fr;
    }

    .pts-launch-side {
        position: static;
    }
}

@media (max-width: 560px) {
    .pts-launch-body {
        padding: 14px;
    }

    .pts-launch-phase button {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .pts-launch-chevron {
        display: none;
    }
}
