.intake-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.intake-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.intake-header h1 { margin: 0 0 0.25rem; font-size: 2rem; letter-spacing: -0.02em; }
.intake-summary { margin: 0; color: var(--muted, #64748b); font-size: 0.9rem; }
.intake-actions { display: flex; gap: 0.75rem; align-items: center; }
.intake-actions select {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
}

.intake-card {
    background: white;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 150ms;
}
.intake-card:hover { border-color: var(--primary, #2563eb); }

.ic-body { flex: 1; min-width: 0; }
.ic-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.3rem; }
.ic-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--muted, #64748b);
}
.ic-meta .chip { font-size: 0.7rem; }
.ic-raw {
    margin-top: 0.5rem;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.8rem;
    color: var(--muted, #94a3b8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ic-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.ic-actions button {
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    border: 1px solid var(--border, #e2e8f0);
    background: white;
    color: var(--text, #0f172a);
    transition: background 100ms;
}
.ic-actions button:hover { background: var(--surface, #f1f5f9); }
.ic-actions .btn-convert { color: var(--primary, #2563eb); border-color: var(--primary, #2563eb); }
.ic-actions .btn-reject { color: #dc2626; border-color: #fca5a5; }
