.steve-live-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.steve-live-toggle {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #0084ff;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0, 132, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.steve-live-panel {
    width: 390px;
    max-width: calc(100vw - 28px);
    height: 620px;
    max-height: calc(100vh - 40px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    box-shadow: 0 22px 70px rgba(17, 24, 39, .22);
    overflow: hidden;
    display: none;
    flex-direction: column;
}
.steve-live-widget.steve-expanded .steve-live-toggle {
    display: none;
}
.steve-live-widget.steve-expanded .steve-live-panel {
    display: flex;
}
.steve-live-header {
    height: 58px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.steve-live-title {
    font-weight: 700;
    color: #243342;
}
.steve-live-time {
    color: #7b8794;
    font-size: 13px;
}
.steve-live-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: #f1f4f8;
    color: #44505c;
    cursor: pointer;
}
.steve-live-transcripts {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    background: #fbfcfe;
}
.steve-live-status {
    color: #8a94a3;
    font-size: 13px;
    margin: 6px 0 12px;
}
.steve-live-loader {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1f2933;
    text-align: center;
}
.steve-live-loader-ring {
    width: 44px;
    height: 44px;
    border: 4px solid #dbeafe;
    border-top-color: #0084ff;
    border-radius: 50%;
    animation: steve-spin .8s linear infinite;
}
.steve-live-loader strong {
    display: block;
    font-size: 17px;
}
.steve-live-loader small {
    color: #7b8794;
    font-size: 13px;
}
.steve-bubble {
    display: flex;
    margin: 9px 0;
}
.steve-bubble > div {
    max-width: 86%;
    border-radius: 14px;
    padding: 10px 12px;
    line-height: 1.35;
    font-size: 14px;
}
.steve-bubble.user {
    justify-content: flex-end;
}
.steve-bubble.user > div {
    background: #0084ff;
    color: #fff;
    border-bottom-right-radius: 5px;
}
.steve-bubble.user.listening > div {
    min-width: 54px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steve-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: steve-spin .8s linear infinite;
}
@keyframes steve-spin {
    to { transform: rotate(360deg); }
}
.steve-bubble.ai {
    justify-content: flex-start;
}
.steve-bubble.ai > div {
    background: #eef2f7;
    color: #243342;
    border-bottom-left-radius: 5px;
}
.steve-tool-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 12px;
    margin: 10px 0;
}
.steve-tool-card strong {
    color: #243342;
}
.steve-tool-card small {
    color: #7b8794;
}
.steve-tool-form {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}
.steve-tool-form input,
.steve-tool-form textarea,
.steve-tool-form select {
    width: 100%;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    padding: 10px 11px;
    color: #243342;
    font-size: 14px;
    outline: none;
}
.steve-tool-form button,
.steve-purchase-button {
    border: none;
    border-radius: 10px;
    background: #0084ff;
    color: #fff;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
}
.steve-purchase-button {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    text-align: left;
    margin-top: 8px;
    background: #f6f9ff;
    color: #243342;
    border: 1px solid #dbe7ff;
}
.steve-purchase-button img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    background: #e6edf5;
}
.steve-purchase-button span {
    display: block;
    color: #7b8794;
    font-size: 12px;
    margin-top: 3px;
}
.steve-stepper {
    display: grid;
    gap: 10px;
}
.steve-stepper-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.steve-stepper-top span,
.steve-step-label {
    color: #7b8794;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.steve-step-text {
    background: #f6f9ff;
    border: 1px solid #dbe7ff;
    border-radius: 12px;
    color: #243342;
    font-size: 15px;
    line-height: 1.45;
    min-height: 96px;
    padding: 13px;
}
.steve-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.steve-step-actions button {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 12px;
}
.steve-step-back {
    background: #eef2f7;
    color: #425466;
}
.steve-step-next,
.steve-step-return {
    background: #0084ff;
    color: #fff;
}
.steve-step-return {
    margin-left: auto;
}
.steve-live-footer {
    padding: 12px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}
.steve-live-widget.steve-tool-active .steve-live-footer {
    display: none;
}
.steve-live-footer input {
    flex: 1;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 12px;
    outline: none;
}
.steve-live-send {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: #0084ff;
    color: #fff;
    font-size: 19px;
    cursor: pointer;
}
@media(max-width: 560px) {
    .steve-live-widget {
        right: 12px;
        bottom: 12px;
    }
    .steve-live-panel {
        width: calc(100vw - 24px);
        height: calc(100vh - 24px);
    }
}
