/* Lead Follow-Up Demo — supplemental styles */

/* Email timeline vertical connector */
.email-timeline {
    position: relative;
}
.email-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, #e2e8f0);
    z-index: 0;
}

/* Email card body expand/collapse */
.email-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.email-body.expanded {
    max-height: 800px;
}

/* Slack mockup monospace text */
.slack-message {
    font-family: 'Slack-Lato', 'Lato', system-ui, sans-serif;
    line-height: 1.5;
    white-space: pre-line;
}

/* Score card glow */
.score-glow-red    { box-shadow: 0 0 32px rgba(239,68,68,0.15); }
.score-glow-orange { box-shadow: 0 0 32px rgba(249,115,22,0.15); }
.score-glow-amber  { box-shadow: 0 0 32px rgba(245,158,11,0.12); }
.score-glow-slate  { box-shadow: none; }
