.launcher-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.2rem 1.4rem 3rem;
}

.launcher-hero-card {
    background: linear-gradient(145deg, #ffffff, #f7faff);
    border: 1px solid #d9e7ff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 58, 140, 0.08);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.launcher-kicker {
    margin: 0;
    color: #2a63c7;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.launcher-hero-copy h1 {
    margin: 0.25rem 0 0.7rem;
    color: #0f2e63;
    font-size: 2rem;
    line-height: 1.1;
}

.launcher-hero-copy p {
    margin: 0;
    color: #49628d;
    max-width: 700px;
    line-height: 1.55;
}

.launcher-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.launcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease;
}

.launcher-btn:hover {
    transform: translateY(-2px);
}

.launcher-btn.primary {
    background: linear-gradient(145deg, #1a6fe8, #0a4fc4);
    color: #fff;
}

.launcher-btn.is-locked {
    background: linear-gradient(145deg, #9aa6bb, #7b8699);
    color: #f7f9fc;
    border-color: #8893a7;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
}

.launcher-btn.is-locked:hover {
    transform: none;
}

.launcher-btn.ghost {
    background: #eff5ff;
    color: #1b4f9f;
    border-color: #cadcff;
}

.launcher-btn.big {
    padding: 12px 16px;
}

.launcher-hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-content: start;
}

.badge-item {
    background: #edf4ff;
    border: 1px solid #d2e2ff;
    border-radius: 12px;
    padding: 11px;
    color: #315fae;
    font-size: 13px;
    font-weight: 700;
}

.launcher-section {
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #e0eaff;
    border-radius: 16px;
    padding: 1.2rem;
}

.launcher-section-head h2 {
    margin: 0;
    color: #104090;
    font-size: 1.3rem;
}

.launcher-section-head p {
    margin: 0.35rem 0 0;
    color: #607ca8;
}

.download-panel {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    background: #f7faff;
    border: 1px solid #dce9ff;
    border-radius: 14px;
    padding: 1rem;
}

.download-panel-copy h3 {
    margin: 0 0 0.5rem;
    color: #1d4f9d;
}

.download-panel-copy ul {
    margin: 0;
    padding-left: 1rem;
    color: #4d678f;
    line-height: 1.5;
}

.download-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.download-note {
    font-size: 12px;
    color: #7790b6;
}

.safety-panel {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    border: 1px solid #d9e7ff;
    border-radius: 14px;
    background: linear-gradient(145deg, #f9fcff, #edf4ff);
    padding: 1rem;
}

.safety-panel-copy h3 {
    margin: 0;
    color: #1a4c98;
}

.safety-panel-copy p {
    margin: 0.45rem 0 0;
    color: #4d678f;
    line-height: 1.5;
}

.safety-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.feature-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.feature-card {
    border: 1px solid #dce7ff;
    border-radius: 12px;
    padding: 0.9rem;
    background: #fbfdff;
}

.feature-card h3 {
    margin: 0;
    color: #184892;
    font-size: 1rem;
}

.feature-card p {
    margin: 0.45rem 0 0;
    color: #59739d;
    font-size: 0.95rem;
}

/* ── Feature Hover Effects ── */
.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(24, 72, 146, 0.08);
    border-color: #c0d4ff;
}

/* ── Sticky CTA ── */
.launcher-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #dce8ff;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    display: flex;
    justify-content: center;
}
.launcher-sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}
.sticky-cta-text {
    display: flex;
    flex-direction: column;
}
.sticky-cta-text strong {
    color: #0f2e63;
    font-size: 15px;
}
.sticky-cta-text span {
    color: #607ca8;
    font-size: 13px;
}

/* ── FAQ Accordion Updates ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid #dce8ff;
    border-radius: 12px;
    background: #fafdff;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.open {
    border-color: #1a6fe8;
    box-shadow: 0 4px 12px rgba(26, 111, 232, 0.1);
}
.faq-question {
    padding: 1rem 1.2rem;
    font-weight: 700;
    color: #18488f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-chevron {
    transition: transform 0.3s ease;
    color: #8fa6ca;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #1a6fe8;
}
.faq-answer {
    max-height: 0;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
}
.faq-answer-inner {
    padding: 0 1.2rem 1rem;
    color: #5e769d;
    line-height: 1.5;
}

/* ── CSS Mockup Window ── */
.mockup-window {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d2e0ff;
    box-shadow: 0 12px 40px rgba(13, 58, 140, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}
.mockup-header {
    background: #f1f5fa;
    border-bottom: 1px solid #d2e0ff;
    padding: 10px 14px;
    display: flex;
    align-items: center;
}
.mockup-controls {
    display: flex;
    gap: 6px;
    margin-right: 14px;
}
.mockup-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.mockup-btn.close { background: #ff5f56; }
.mockup-btn.min { background: #ffbd2e; }
.mockup-btn.max { background: #27c93f; }
.mockup-title {
    font-size: 12px;
    font-weight: 600;
    color: #5a7398;
    margin: 0 auto;
    transform: translateX(-24px); /* offset for controls */
}
.mockup-body {
    display: flex;
    flex: 1;
}
.mockup-sidebar {
    width: 100px;
    background: #fafcff;
    border-right: 1px solid #eef3ff;
    padding: 10px 0;
}
.mockup-nav {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #7b94b7;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.mockup-nav.active {
    background: #edf3ff;
    color: #1a6fe8;
    border-right: 2px solid #1a6fe8;
}
.mockup-content {
    flex: 1;
    padding: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mockup-mod {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid #eef3ff;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.mockup-mod-icon {
    width: 32px;
    height: 32px;
    background: #f0f5ff;
    color: #4a7be8;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 14px;
}
.mockup-mod-info {
    flex: 1;
}
.mockup-mod-title {
    font-size: 12px;
    font-weight: 700;
    color: #184892;
}
.mockup-mod-meta {
    font-size: 10px;
    color: #7b94b7;
}
.mockup-mod-action {
    color: #bccbe0;
    font-size: 12px;
    cursor: pointer;
}
.mockup-mod-action:hover {
    color: #ff5f56;
}

/* ── Steps Timeline ── */
.steps-grid {
    position: relative;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #dbe7ff;
    z-index: 0;
}
.step-card {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid #dbe7ff;
    border-radius: 12px;
    padding: 0.95rem;
    background: #f9fcff;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(24, 72, 146, 0.08);
}
.step-card span {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #1a6fe8;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.step-card:hover span {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(26, 111, 232, 0.4);
}
.step-card h4 {
    margin: 0;
    color: #174383;
}
.step-card p {
    margin: 0.35rem 0 0;
    color: #5b7399;
}

@media (max-width: 980px) {
    .steps-grid::before {
        display: none;
    }

    .launcher-hero-card,
    .download-panel,
    .safety-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .feature-grid,
    .steps-grid,
    .launcher-hero-badges {
        grid-template-columns: 1fr;
    }
}