/* QPulse landing — lightweight marketing surface for the bare root. Token-aware so it follows
   the same dark/light decision as the app (data-theme is applied pre-paint). */
#qp-landing {
    min-height: 100dvh;
    display: flex;
    align-items: stretch;
    background:
        radial-gradient(1200px 500px at 80% -10%, color-mix(in srgb, #4f46e5 22%, transparent), transparent 60%),
        var(--surface);
    color: var(--text-primary);
}

.qpl-shell {
    width: min(920px, 92vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.qpl-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
}

.qpl-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-heading);
}

.qpl-brand svg { width: 34px; height: 34px; border-radius: 8px; }

.qpl-lang { display: flex; gap: 6px; }

.qpl-lang button {
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-alt);
    color: var(--text-secondary);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.qpl-lang button:hover { color: var(--text-primary); border-color: #4f46e5; }
.qpl-lang button.active { color: #fff; background: #4f46e5; border-color: #4f46e5; }

.qpl-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding-block: 24px 40px;
}

.qpl-hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    line-height: 1.12;
    color: var(--text-heading);
    max-width: 18ch;
}

.qpl-hero p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 52ch;
}

.qpl-cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 12px;
    background: linear-gradient(180deg, #4f46e5, #4338ca);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px color-mix(in srgb, #4f46e5 40%, transparent);
}

.qpl-cta:hover { filter: brightness(1.06); }
.qpl-cta:active { transform: translateY(1px); }

.qpl-points {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
}

.qpl-points li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4f46e5;
    margin-inline-end: 10px;
    vertical-align: middle;
}

.qpl-footer {
    padding-block: 18px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}
