body {
    min-width: 320px;
    max-width: 1024px;
    margin: 8px auto;
    position: relative;
}

/* Animated backdrop: soft brand-colored glows drifting behind the launcher UI. */
.co-orbits {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.co-orbits span {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.25;
    animation: co-drift 26s ease-in-out infinite alternate;
}
.co-orbits span:nth-child(1) { width: 420px; height: 420px; background: #f94d00; top: -140px; left: -120px; }
.co-orbits span:nth-child(2) { width: 360px; height: 360px; background: #336699; bottom: -140px; right: -100px; animation-duration: 34s; animation-delay: -12s; }
.co-orbits span:nth-child(3) { width: 240px; height: 240px; background: #6699cc; top: 45%; left: 65%; animation-duration: 40s; animation-delay: -20s; }
@keyframes co-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, -45px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
    .co-orbits span { animation: none; }
}

.launcher-page {
    min-width: 320px;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    color: #0b1b2e;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.98), rgba(242, 246, 250, 0.94) 52%, #e8eef4 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.launcher-page * {
    box-sizing: border-box;
}

.launcher-page .co-orbits span {
    opacity: 0.16;
}

.launcher-shell {
    width: min(920px, calc(100% - 40px));
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(32px, 7vh, 72px) 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.launcher-brand {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: #0b1b2e;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 750;
    letter-spacing: -0.025em;
    text-decoration: none;
}

.launcher-brand img {
    width: 66px;
    height: 66px;
}

.launcher-brand:focus-visible,
.launcher-footer a:focus-visible {
    outline: 3px solid #d63b3b;
    outline-offset: 4px;
    border-radius: 4px;
}

.launcher-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 6vw, 68px);
    border: 1px solid rgba(11, 27, 46, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(11, 27, 46, 0.13);
    text-align: center;
    backdrop-filter: blur(12px);
}

.launcher-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #d63b3b, #f06a3c 48%, #336699);
}

.launcher-kicker {
    margin: 0 0 14px;
    color: #b52f2f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.launcher-card h1 {
    max-width: 690px;
    margin: 0 auto;
    font-size: clamp(2.1rem, 6vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.launcher-lead {
    max-width: 650px;
    margin: 24px auto 0;
    color: #405268;
    font-size: clamp(1rem, 2.2vw, 1.16rem);
    line-height: 1.7;
}

.launcher-steps {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
    list-style: none;
    counter-reset: launcher-step;
    text-align: left;
}

.launcher-steps li {
    counter-increment: launcher-step;
    min-height: 116px;
    padding: 20px;
    border: 1px solid #dce4ec;
    border-radius: 15px;
    background: #f7f9fb;
}

.launcher-steps li::before {
    content: counter(launcher-step);
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #0b1b2e;
    font-size: 0.82rem;
    font-weight: 800;
}

.launcher-steps p {
    margin: 13px 0 0;
    color: #263a50;
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.45;
}

.launcher-note {
    margin: 28px 0 0;
    color: #68788a;
    font-size: 0.9rem;
}

.launcher-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 8px 0;
    color: #68788a;
    font-size: 0.84rem;
}

.launcher-footer a {
    color: #334f6d;
    font-weight: 700;
    text-underline-offset: 3px;
}

@media (max-width: 680px) {
    .launcher-shell {
        width: min(100% - 24px, 920px);
        padding-top: 26px;
    }

    .launcher-brand {
        margin-bottom: 18px;
    }

    .launcher-card {
        border-radius: 20px;
    }

    .launcher-steps {
        grid-template-columns: 1fr;
    }

    .launcher-steps li {
        min-height: auto;
        display: grid;
        grid-template-columns: 30px 1fr;
        align-items: center;
        gap: 12px;
    }

    .launcher-steps p {
        margin: 0;
    }

    .launcher-footer {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

ul.progress-bar {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
	display:inherit;
	background-color:transparent;
}

li.section {
    display: inline-block;
    padding-top: 45px;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
    color: gray;
    vertical-align: top;
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

li.section:before {
    content: '?';
    position: absolute;
    top: 2px;
    left: calc(50% - 15px);
    z-index: 1;
    width: 30px;
    height: 30px;
    color: white;
    border: 2px solid white;
    border-radius: 17px;
    line-height: 30px;
    background: gray;
}
.status-bar {
    height: 2px;
    background: gray;
    position: relative;
    top: 20px;
    margin: 0 auto;
}
.current-status {
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: mediumseagreen;
}

@keyframes changeBackground {
    from {background: gray}
    to {background: white}
}

li.section.visited:before {
    content: '\2714';
    animation: changeBackground .5s linear;
    animation-fill-mode: forwards;
}
/*
li.section.visited.current:before {
	
    box-shadow: 0 0 0 2px mediumseagreen;
}
*/
div.progress-bar-wrapper.error>ul.progress-bar>li.section.visited.current:before {
	
    content: '?';
	color: #000;
    box-shadow: 0 0 0 2px black;
}
