/* ---- Pixie AI chat mockup ---- */
.feature-page .feature-mock-pixie {
    max-width: 460px;
    overflow: hidden;
}

.feature-page .feature-mock-pixie-head {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: var(--h-space-3);
    padding: 14px 18px;
    border-bottom: 1px solid var(--h-border-color-lightest);
}

.feature-page .feature-mock-pixie-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--h-pink), var(--h-pink-dark));
    color: var(--h-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-page .feature-mock-pixie-id strong {
    display: block;
    color: var(--h-navy);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--h-font-display);
}

.feature-page .feature-mock-pixie-id span {
    display: block;
    color: var(--h-teal);
    font-size: 11px;
    font-weight: 600;
    margin-top: 1px;
}

.feature-page .feature-mock-pixie-lang {
    display: inline-flex;
    padding: 3px var(--h-space-2);
    border-radius: 6px;
    background: var(--h-gray-100);
    color: var(--h-gray-700);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.feature-page .feature-mock-pixie-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--h-navy);
    max-width: 86%;
    margin: var(--h-space-3) 0;
}

.feature-page .feature-mock-pixie-bubble.is-user {
    background: var(--h-blue-pale);
    margin-left: auto;
    margin-right: 18px;
    border-bottom-right-radius: 4px;
}

.feature-page .feature-mock-pixie-bubble.is-pixie {
    background: var(--h-gray-50);
    border: 1px solid var(--h-border-color-lightest);
    margin-left: 18px;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.feature-page .feature-mock-pixie-bubble p {
    margin: 0 0 6px;
}

.feature-page .feature-mock-pixie-bubble p:last-child {
    margin-bottom: 0;
}

.feature-page .feature-mock-pixie-bubble strong {
    color: var(--h-navy);
    font-weight: 700;
}

.feature-page .feature-mock-pixie-time {
    display: block;
    font-size: 10px;
    color: var(--h-text-muted);
    margin-top: var(--h-space-1);
    text-align: right;
}

.feature-page .feature-mock-pixie-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--h-border-color-lightest);
}

.feature-page .feature-mock-pixie-source {
    display: inline-flex;
    align-items: center;
    gap: var(--h-space-1);
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px var(--h-space-2);
    border-radius: 999px;
    background: var(--h-white);
    border: 1px solid var(--h-border-color-lightest);
    color: var(--h-text-muted);
    white-space: nowrap;
}

.feature-page .feature-mock-pixie-source ion-icon {
    font-size: 12px;
    color: var(--h-pink-dark);
}

.feature-page .feature-mock-pixie-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--h-space-2);
    padding: var(--h-space-3) 18px;
    background: var(--h-gray-50);
    border-top: 1px solid var(--h-border-color-lightest);
    font-size: 11px;
    color: var(--h-text-muted);
}

.feature-page .feature-mock-pixie-foot ion-icon {
    color: var(--h-teal);
    font-size: 14px;
    flex-shrink: 0;
}

