.pulse-dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(10px);
}
.pulse-dialog {
    width: min(100%, 420px);
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    color: #fff;
    background: #18181b;
    box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.pulse-dialog h2 { margin: 0 0 10px; font-size: 18px; }
.pulse-dialog p {
    margin: 0 0 16px;
    color: #d4d4d8;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
}
.pulse-dialog input {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    color: #fff;
    background: #09090b;
}
.pulse-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; }
.pulse-dialog-actions button {
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #3f3f46;
    cursor: pointer;
}
.pulse-dialog-actions .pulse-dialog-primary {
    background: linear-gradient(90deg, #f43f5e, #db2777);
}
.pulse-dialog-hidden { display: none; }
